https://github.com/tizz98/py-pspdfkit
Python API wrapper around PSPDFKit
https://github.com/tizz98/py-pspdfkit
pspdfkit pspdfkit-library
Last synced: 8 months ago
JSON representation
Python API wrapper around PSPDFKit
- Host: GitHub
- URL: https://github.com/tizz98/py-pspdfkit
- Owner: tizz98
- License: mit
- Created: 2017-12-09T22:54:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-24T16:25:03.000Z (almost 6 years ago)
- Last Synced: 2025-10-09T13:03:03.160Z (8 months ago)
- Topics: pspdfkit, pspdfkit-library
- Language: Python
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PSPDFKit API wrapper
`py-pspdfkit` is a simple API wrapper for [PSPDFKit](https://pspdfkit.com/). 
## Installation
`pip install py-pspdfkit`
## Usage
```python
from pspdfkit import API
client = API('http://localhost:5000', 'secret')
client.upload_file_from_url(
'https://isotropic.org/papers/chicken.pdf',
'cc90ea63a926fe36a9c92fab0ca246db40f34e39170764153c13e427e4acc1fb'
)
```
## Web application examples
- [Django](https://github.com/tizz98/pspdfkit-server-example-django)