Metadata-Version: 1.1
Name: puchikarui
Version: 0.1a3
Summary: A minimalist SQLite wrapper library for Python which supports ORM features.
Home-page: https://letuananh.github.io/puchikarui/
Author: Le Tuan Anh
Author-email: tuananh.ke@gmail.com
License: 0.1a3
Description: Puchikarui
        ==========
        
        A minimalist SQLite wrapper library for Python 3 which supports ORM features.
        It is available on PyPI and can be installed using `pip`.
        
        ```bash
        pip install puchikarui
        # or with python -m pip
        python -m pip install puchikarui
        python3 -m pip install puchikarui
        ```
        
        To run demo, please try this script:
        ```bash
        python3 puchikarui.demo.py
        ```
        
        # Why puchikarui
        `Puchikarui` is *NOT* an ORM library.
        If you want ORM features, please consider https://github.com/coleifer/peewee or https://www.sqlalchemy.org/.
        Puchikarui is a helper library which provides helper functions to work with SQLite database directly (less magic and more control).
        
        Changes
        ============
        
        2018-03-03
            + Auto expanduser path.
        
        2018-01-24
            + First release to PyPI
        
        2015-09-09
        	+ Reorganise project structure
        
        
Keywords: SQLite sqlite3 database
Platform: any
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Database
