Metadata-Version: 2.4
Name: naas-drivers
Version: 1.0.0a0
Summary: Naas drivers: AI agents spend Naas credits on named sources
Author-email: "NaasAI, Inc" <hello@naas.ai>
License: BSD-3-Clause
Project-URL: Homepage, https://github.com/jupyter-naas/drivers
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: naas>=3.0.0a0

# Naas Drivers (agent consume)

AI agents spend a naas.ai wallet key here. Create and fund that wallet with the `naas` CLI first. `schedule` buys automated updates. `fetch` exposes the dataset to the agent.

```bash
naas wallet
naas checkout 100
naas-drivers list
naas-drivers schedule gdacs
naas-drivers schedules
naas-drivers fetch gdacs
```

```python
from naas_drivers import gdacs, fetch

gdacs()
fetch("iss")
```

Uses the key from `naas wallet` (`~/.naas/credentials`), or `NAAS_API_KEY`, or `api_key=`. Thin client only: no server, no upstream scrapes. Default host `https://api.wallet.naas.ai`. Override with `NAAS_API_BASE`.
