Metadata-Version: 2.1
Name: Firo
Version: 1.2.0
Summary: A Realtime, No SQL Database
Home-page: https://github.com/circutrider21/FiroDB
Author: Peeled Fruit Studios
Author-email: Circutrider21@gmail.com
License: UNKNOWN
Description: # Firo
        
        ![PyPI](https://img.shields.io/pypi/v/Firo?color=brightgreen) - ![License](https://img.shields.io/pypi/l/Firo?color=red) - ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/Firo?color=brightgreen)
        
        Firo is a small and efficient database system for python programs that eases learning to use a database for begenners at programing
        
        Firo is also very functional and can be used in professional application due to the fact that it is very robust and functional
        
        ## Version 1.2 is Here â””[Ã²â€¿â€¿Ã³]â”˜, Release Notes At the bottom 
        
        
        ## Usage
        
        Below is a simple example that shows how to use Firo
        
        ```` python
        
        import Firo
        
        con = Firo.Start("data.db")
        
        con.set("msg", "Hello")
        
        print(con.get("msg"))
        
        ````
        
        ## Installation
        
        There are 2 ways to install this application
        
        #### Method 1 | Ofline installation
        
        1. Install the latest version of Firo from the releases tab
        
        2. install with this command
        
        ```` bash
        
        $ pip install Firo-1.1.2.whl
        
        ````
        
        #### Method 2 | Online Installation
        
        1. Install The latest version of Firo from PyPi With this command
        
        ```` bash
        
        $ pip install Firo
        
        ````
        
        ### Version 1.2!!!
        
        - Added New Update, Version and Finalized Remove Function
        
        - Created Clear exceptions with error codes
        
        - Now we use unittest for testing
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Database
Requires-Python: >=3.6
Description-Content-Type: text/markdown
