Metadata-Version: 2.4
Name: oneprompt-sdk
Version: 0.1.1
Summary: Lightweight oneprompt cloud SDK.
Project-URL: Homepage, https://github.com/oneprompteu/oneprompt
Project-URL: Documentation, https://github.com/oneprompteu/oneprompt#readme
Project-URL: Repository, https://github.com/oneprompteu/oneprompt
Project-URL: Issues, https://github.com/oneprompteu/oneprompt/issues
Author: oneprompt
License: PolyForm Shield License 1.0.0
Keywords: ai,cloud,data-analysis,llm,sdk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.12
Requires-Dist: httpx>=0.27.2
Requires-Dist: python-dotenv>=1.0
Description-Content-Type: text/markdown

# oneprompt-sdk

Lightweight cloud-only Python SDK for oneprompt.

```python
import oneprompt_sdk as op

client = op.Client(oneprompt_api_key="op_live_...")
result = client.query("Top products by revenue", dataset_id="ds_123")
print(result.summary)
```
