pdfcrowd

A client for Pdfcrowd API
Download

pdfcrowd Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Publisher Name:
  • Pdfcrowd Team
  • Publisher web site:
  • http://pdfcrowd.com/

pdfcrowd Tags


pdfcrowd Description

A client for Pdfcrowd API pdfcrowd is a Python library that lets you easily create PDF files from web pages or raw HTML code in your Python applications.To use the API, you need an account on pdfcrowd.com, if you don't have one you can sign up here. This will give you a username and an API key.An example:import pdfcrowdtry: # create an API client instance client = pdfcrowd.Client("username", "apikey") # convert a web page and store the generated PDF into a pdf variable pdf = client.convertURI('http://example.com') # convert an HTML string and save the result to a file html="< html >< body >In-memory HTML.< /body >< /html >" client.convertHtml(html, open('html.pdf', 'wb')) # convert an HTML file client.convertFile('/path/to/local/file.html', open('file.pdf', 'wb'))except pdfcrowd.Error, why: print 'Failed:', why Requirements: · Python


pdfcrowd Related Software