Metadata-Version: 2.1
Name: cookiedb
Version: 7.0.0
Summary: CookieDB is a noSQL document database.
Home-page: https://github.com/jaedsonpys/cookiedb
Author: Jaedson Silva
Author-email: imunknowuser@protonmail.com
License: Apache License
Project-URL: License, https://github.com/jaedsonpys/cookiedb/blob/master/LICENSE
Project-URL: Documentation, https://jaedsonpys.github.io/cookiedb/
Description: # 🍪 CookieDB database
        
        CookieDB is an *extremely optimized* noSQL database using the **key-value** model, with encrypted databases, you can enjoy the performance, security and ease of using CookieDB. To install **CookieDB**, use the `pip` package manager:
        
        ```
        pip install cookiedb
        ```
        
        - [Documentation](https://jaedsonpys.github.io/cookiedb)
        - [PyPI Project](https://pypi.org/project/cookiedb)
        
        ## Demonstration of use
        
        **Simple usage demo**, see full example in [examples/example.py](https://github.com/jaedsonpys/cookiedb/blob/master/examples/example.py):
        
        ```python
        from cookiedb import CookieDB
        
        database = CookieDB(key='secret')
        database.open('MyDatabase')
        
        database.add('languages/python', {'name': 'Python', 'ext': '.py'})
        python_ext = database.get('languages/python/ext')
        
        print(f'Python extension: {python_ext}')
        ```
        
        ## License
        
        ```
        Apache License
        Copyright 2023 Jaedson Silva
        ```
        
        This project is licensed under Apache License (see [LICENSE](https://github.com/jaedsonpys/cookiedb/blob/master/LICENSE) for details)
        
Keywords: database,noSQL,document,JSON,key-value
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database :: Database Engines/Servers
Description-Content-Type: text/markdown
