Metadata-Version: 2.4
Name: nukleio
Version: 0.1.0
Summary: Typed, dependency-free Python client for the Nukleio public API
Author: Eric Nohara-LeClair
License-Expression: ISC
Project-URL: Homepage, https://github.com/EricNohara/Nukleio-SDKs
Project-URL: Repository, https://github.com/EricNohara/Nukleio-SDKs.git
Project-URL: Issues, https://github.com/EricNohara/Nukleio-SDKs/issues
Keywords: nukleio,portfolio,api,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Nukleio for Python

A typed, dependency-free Python client for reading Nukleio portfolio data.

```bash
pip install nukleio
```

```python
import os
from nukleio import NukleioClient, UserData

client = NukleioClient(os.environ["NUKLEIO_API_KEY"])
user: UserData = client.get_user_data()
print(user["name"])
```

HTTP errors raise `NukleioApiError` with `status_code` and `response_body`. Pass `api_url` to use a local or alternative endpoint.
