Metadata-Version: 2.1
Name: dbclientpy
Version: 0.0.1
Summary: An easy-to-use, flexible, and fast client for reading, writing, and manging your local database.
Project-URL: Homepage, https://github.com/placeholder102023/dbclient
Project-URL: Bug Tracker, https://github.com/placeholder102023/dbclient/issues
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
License-File: LICENSE

# DBClient
An easy-to-use, flexible, and fast client for reading, writing, and manging your local database.

## Usage
```py
from dbclient import Collection, Document
db = Collection('/path/to/db')
users = db['users'] # Creates a ghost collection; Will be created when sub-document is written
users['johndoe'] = {'name': 'Jhon Doe', 'age': 26, 'email': johndoe@example.com'} # Creates a document with contents
```
