A client for Pdfcrowd API.
Project description
The Pdfcrowd API lets you easily create PDF 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 pdfcrowd
try:
# 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pdfcrowd-2.3.tar.gz
(5.5 kB
view details)
File details
Details for the file pdfcrowd-2.3.tar.gz.
File metadata
- Download URL: pdfcrowd-2.3.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86f9a5121c6ec1a1e796b89bb114bc2e6bc270fb57d5cef8b6874b7c2e1c0524
|
|
| MD5 |
3a8e5dca0137c2dd1bbe07bdbc8b0303
|
|
| BLAKE2b-256 |
037329cd862dd38172ff7834ae4fcba768074859e9ee3be256842a64e2039112
|