Metadata-Version: 1.1
Name: sqlbag
Version: 0.1.1487916199
Summary: various snippets of SQL-related boilerplate
Home-page: https://github.com/djrobstep/sqlbag
Author: Robert Lechte
Author-email: robertlechte@gmail.com
License: UNKNOWN
Description: sqlbag: various sql boilerplate
        ===============================
        
        This is just a collection of handy code for doing database things.
        
        What is in the box
        ------------------
        
        Connections, flask setup, SQLAlchemy ORM helpers, temporary database setup and teardown (handy for integration tests).
        
        Installation
        ------------
        
        Simply install with `pip <https://pip.pypa.io>`_:
        
        .. code-block:: shell
        
            $ pip install sqlbag
        
        If you want you can install the database drivers you need at the same time, by specifying one of the optional bundles.
        
        If you're using postgres, this installs ``sqlbag`` and ``psycopg2``:
        
        .. code-block:: shell
        
            $ pip install sqlbag[pg]
        
        If you're installing MySQL/MariaDB then this installs ``pymysql`` as well:
        
        .. code-block:: shell
        
            $ pip install sqlbag[maria]
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
