Metadata-Version: 2.1
Name: wraplite
Version: 0.1.0.dev5
Summary: Python No SQL SQLite Wrapper
Home-page: https://github.com/ruipiresc/ruipiresc.python.wraplite
Author: Rui Pires
Author-email: ruipiresc@gmail.com
License: GPLv3
Description: # WrapLite
        Python No SQL SQLite Wrapper
        
        ## Instalation
        
        ```
        pip install wraplite (not available yet)
        ```
        (almost available yet)
        
        ## Usage
        
        ```python
        import wraplite as wl
        
        my_db = wl.create('my_db.db')
        my_db.create_table('users)
        my_db.users.insert({
          'id': 1,
          'name': 'Rui'
        })
        ```
        
Keywords: nosql sqlite wrapper wraplite sql
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: SQL
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
