Metadata-Version: 2.4
Name: nexdb-sdk
Version: 1.0.0
Summary: Official Python client SDK for NexDB document database server
Author-email: Ansh Singh <ansh@nexdb.cloud>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# NexDB Python SDK

Official client library for connecting Python applications to a hosted NexDB network instance.

## Installation

```bash
pip install nexdb-sdk
```

## Quick Start

```python
from nexdb import NexDbClient

# Connect using your database URI
db = NexDbClient('nexdb://mysecrettoken@127.0.0.1:27017/my_app')
db.connect()
print("Connected to NexDB!")

# Insert a document
db.insert('users', 'u101', {'name': 'Ansh', 'status': 'active'})

# Get a document
user = db.get('users', 'u101')
print('Retrieved user:', user)

# Close connection
db.close()
```
