Metadata-Version: 2.1
Name: GitDatabase
Version: 0.0.5
Summary: use git repository as database
Home-page: https://github.com/mirrorhanyu/GitDatabase
Author: Han
Author-email: mirrorhanyu@gmail.com
Maintainer: Han
Maintainer-email: mirrorhanyu@gmail.com
License: UNKNOWN
Description: ```python
        from gitdatabase.client import Client
        
        # establish connection
        client = Client('github.com/mirrorhanyu/test-database.git', username, password)
        
        # to insert into collection within database
        client.table.insert_one({
            'title': 'GitDatabase works!'
        })
        
        # to query with certain 
        for record in client.table.find({'title': 'GitDatabase works!'}):
            print(record)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
