Python method for generating PDF files

Source: Internet
Author: User
This example demonstrates how Python generates PDF files and is a useful feature that consists of 2 files. The 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 '    input:        textobject.textline (Line.strip ( ))    C.drawtext (textobject)    c.showpage ()    c.save () report = Disk_report () create_pdf (report)

Interested readers can debug run a bit, to improve the shortcomings 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.