How to generate a PDF file using Python,

Source: Internet
Author: User

How to generate a PDF file using Python,

This example demonstrates how to generate a PDF file using Python. It is a practical function and mainly contains two files. The specific implementation method is as follows:

The pdf. py file is as follows:

#!/usr/bin/pythonfrom reportlab.pdfgen import canvasdef hello():    c = canvas.Canvas("helloworld.pdf")    c.drawString(100,100,"Hello,World")    c.showPage()    c.save()hello()

The diskreport. py file is as follows:

#!/usr/bin/env pythonimport subprocessimport datetimefrom reportlab.pdfgen import canvasfrom reportlab.lib.units import inchdef disk_report():    p = subprocess.Popen("df -h", shell=True, stdout=subprocess.PIPE)#   print p.stdout.readlines()    return p.stdout.readlines()def create_pdf(input, output="disk_report.pdf"):    now = datetime.datetime.today()    date = now.strftime("%h %d %Y %H:%M:%S")    c = canvas.Canvas(output)    textobject = c.beginText()    textobject.setTextOrigin(inch, 11*inch)    textobject.textLines('''Disk Capcity Report: %s''' %date)    for line in input:        textobject.textLine(line.strip())    c.drawText(textobject)    c.showPage()    c.save()report = disk_report()create_pdf(report)

If you are interested, you can debug and run it to improve the deficiencies to achieve the best application of the function!




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.