Metadata-Version: 2.4
Name: relaypdf
Version: 0.1.1
Summary: Official Python SDK for the RelayPDF document API
Author-email: RelayPDF <timspell@gmail.com>
License: MIT
Project-URL: Homepage, https://relaypdf.com
Project-URL: Documentation, https://relaypdf.com/docs
Project-URL: Repository, https://github.com/timspell1/PDF
Keywords: pdf,html-to-pdf,relaypdf,documents
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Official RelayPDF Python SDK

```bash
pip install relaypdf
```

```python
from relaypdf import RelayPDF

client = RelayPDF(api_key="pdf_live_...")
pdf = client.pdf.from_html("<h1>Hello</h1>", filename="hello.pdf")
pdf.save("hello.pdf")
```

See [relaypdf.com/docs/sdks/python](https://relaypdf.com/docs/sdks/python) for URL/Markdown/templates, async jobs, and webhook verification.
