Official Python client SDK for NexDB document database server
Project description
NexDB Python SDK
Official client library for connecting Python applications to a hosted NexDB network instance.
Installation
pip install nexdb-sdk
Quick Start
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()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nexdb_sdk-1.0.0.tar.gz
(2.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nexdb_sdk-1.0.0.tar.gz.
File metadata
- Download URL: nexdb_sdk-1.0.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83702985d72317926a16d9ab746554602974bfa148b0e2a0d5c472570b56a236
|
|
| MD5 |
42067a02a91b778b91b6790ee6d00d64
|
|
| BLAKE2b-256 |
209597dae13d059b26193e9582f2ced7ac3deda38c3416d613d6a5f0cb9553be
|
File details
Details for the file nexdb_sdk-1.0.0-py3-none-any.whl.
File metadata
- Download URL: nexdb_sdk-1.0.0-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86bbc2edb9090d7953ba9243021a7eacfdccd1270c9960975a1dca64587be023
|
|
| MD5 |
08ed7a64885c892ce8879b10fe0a405c
|
|
| BLAKE2b-256 |
a7cd0fbe459dd243b8a472eeeb44b7705dac04d90c08f3b8d37ff291df3fe414
|