Metadata-Version: 2.1
Name: cookiedb
Version: 6.0.1
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://github.com/jaedsonpys/cookiedb/tree/master/DOCS
Description: # 🍪 CookieDB database
        
        **CookieDB** is a noSQL document database developed in Python. Using `JSON` as the document where all data is stored. See a little about:
        
        - Store information in various types of data;
        - Encrypted database;
        - Easy access to data;
        - Data search by path.
        
        To install **CookieDB**, use the `pip` package manager:
        
        ```
        pip install cookiedb
        ```
        
        - [CookieDB Documentation](https://github.com/jaedsonpys/cookiedb/tree/master/DOCS)
        - [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()
        
        database.create_database('MyDatabase')
        database.open('MyDatabase')
        
        database.add('languages', {
            'python': {
                'name': 'Python',
                'ext': '.py'
            },
            'cpp': {
                'name': 'C++',
                'ext': '.cpp'
            }
        })
        
        languages = database.get('languages')
        print(f'All languages: {languages}')
        ```
        
        ## 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,sql
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
