Some checks failed
Build & Deploy to Staging / Build & Deploy to Staging (push) Has been cancelled
- Node.js SDK (sdk/nodejs/): TypeScript, zero deps, native fetch, Node 18+ - Python SDK (sdk/python/): sync + async clients via httpx, Python 3.8+ - Both wrap all conversion endpoints (html, markdown, url, templates) - Proper error handling with DocFastError - Full README documentation for each
6 lines
197 B
Python
6 lines
197 B
Python
"""DocFast — Official Python SDK for the HTML-to-PDF API."""
|
|
|
|
from .client import DocFast, AsyncDocFast, DocFastError
|
|
|
|
__all__ = ["DocFast", "AsyncDocFast", "DocFastError"]
|
|
__version__ = "0.1.0"
|