Skip to content

SDK Examples

Worked examples for the indox Python SDK.

(Seeded; expand as we collect real usage patterns.)

Convert a document

```python from indox import Client

c = Client(token="eyJ…") job = c.docs.convert("report.docx", target_format="pdf") job.wait() # polls until terminal job.download("report.pdf") ```

Convert a font

python job = c.fonts.convert("MyFont.ttf", target_format="woff2") job.wait() job.download("MyFont.woff2")