Metadata-Version: 2.4
Name: qosmos-sdk
Version: 0.1.0
Summary: Python SDK for Qosmos entropy-as-a-service
Author: Qnu Labs
License: MIT
Project-URL: Homepage, https://qosmos.qnulabs.com
Project-URL: Repository, https://github.com/qunulabs/qosmos
Project-URL: Issues, https://github.com/qunulabs/qosmos/issues
Keywords: qosmos,entropy,qrng,random,sdk
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# qosmos-sdk

Python SDK for Qosmos entropy-as-a-service.

```python
from qosmos_sdk import QosmosClient

client = QosmosClient()
entropy = client.random_hex(4)
print(entropy["value"])
```

The client reads `QOSMOS_API_KEY`, `QOSMOS_ENV`, and `QOSMOS_BASE_URL` by default.
