Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tizz98/py-pspdfkit
Python API wrapper around PSPDFKit
https://github.com/tizz98/py-pspdfkit
pspdfkit pspdfkit-library
Last synced: 9 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-24T16:25:03.000Z (over 4 years ago)
- Last Synced: 2024-05-23T01:23:08.675Z (6 months ago)
- Topics: pspdfkit, pspdfkit-library
- Language: Python
- Size: 16.6 KB
- Stars: 1
- Watchers: 3
- 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/). ![travis](https://api.travis-ci.org/tizz98/py-pspdfkit.svg?branch=master)## 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)