Metadata-Version: 2.1
Name: ezdatabase
Version: 1.1.1
Summary: A simple database wrapper for Python 3
Home-page: UNKNOWN
Author: JJTV
License: MIT
Description: Change Log
        ==========
        
        1.1.1 (26/09/2021)
        -------------------
        - Documentation Fix
        
        # ezdatabase
        ## Making Databases easier
        
        EzDatabase is a simple Database Wrapper for Python! Inspired by Repl.it Database!
        
        ## Features
        
        - Works with a Key / Value System
        - Can store strings, numbers, objects, booleans
        
        ## Code Examples
        
        - Initialize Database
        #
        #
        ```python
        from ezdatabase import db
        
        database = db.db("database.db")
        # Returns None
        ```
        
        - Set / Update Value of a Key
        #
        #
        ```python
        # Arguments: key_name, key_value
        database.write("User1", {"age": 10, "name": "John"})
        database.write("Product: 21398", "10,30 EUR")
        # Returns True on Success
        ```
        
        - Read the Value of a Key
        #
        #
        ```python
        value = database.read("User1")
        # Returns the Value of a Key
        ```
        - Delete a Key
        #
        #
        ```python
        database.delete("User1")
        # Returns True on Successful removal of the Key
        ```
Keywords: database wrapper,ezdatabase,easydatabase,easy database,repl.it database,sql alternative,sqlite
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
