Metadata-Version: 2.3
Name: neo4j-aura-sdk
Version: 0.1.2
Summary: 
Author: Zach Probst
Author-email: Zach_Probst@intuit.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: httpx (>=0.27.0,<0.28.0)
Requires-Dist: pydantic (>=2.7.3,<3.0.0)
Description-Content-Type: text/markdown

# Neo4j Aura SDK for Python

This is an SDK for interacting with the Neo4j Aura service from Python. 

## Installation

```bash
pip install neo4j-aura-sdk
```

## Usage

```python
from neo4j_aura_sdk import AuraClient


async def main():
    async with AuraClient.from_env() as client:
        tenants = await client.tenants()
        print(tenants)


if __name__ == "__main__":
    import asyncio
    asyncio.run(main())
```


## Development

### Running tests

```bash
make test
```

### Building the package

```bash
poetry build
```

### Publishing the package

```bash
poetry publish
```

## License

LICENSING INFORMATION TBD

## Contributing

Please see [CONTRIBUTING.md](CONTRIBUTING.md) for more information.

