Metadata-Version: 1.1
Name: SQLAlchemy-JSONField
Version: 0.3.1
Summary: SQLALchemy JSONField implementation for storing dicts at SQL
Home-page: https://github.com/penguinolog/sqlalchemy_jsonfield
Author: Alexey Stepanov
Author-email: penguinolog@gmail.com
License: Apache License, Version 2.0
Description: SQLAlchemy_JSONField
        ====================
        
        .. image:: https://travis-ci.org/penguinolog/sqlalchemy_jsonfield.svg?branch=master
            :target: https://travis-ci.org/penguinolog/sqlalchemy_jsonfield
        .. image:: https://coveralls.io/repos/github/penguinolog/sqlalchemy_jsonfield/badge.svg?branch=master
            :target: https://coveralls.io/github/penguinolog/sqlalchemy_jsonfield?branch=master
        .. image:: https://img.shields.io/github/license/penguinolog/sqlalchemy_jsonfield.svg
            :target: https://raw.githubusercontent.com/penguinolog/sqlalchemy_jsonfield/master/LICENSE
        
        SQLALchemy JSONField implementation for storing dicts at SQL independently from JSON type support.
        
        Pros:
        
        * Free software: Apache license
        * Open Source: https://github.com/penguinolog/sqlalchemy_jsonfield
        * Self-documented code: docstrings with types in comments
        * Uses native JSON, if possible
        * Support miltiple Python versions:
        
        ::
        
            Python 2.7
            Python 3.4
            Python 3.5
            Python 3.6
            PyPy
            PyPy3
        
        Testing
        =======
        The main test mechanism for the package `sqlalchemy_jsonfield` is using `tox`.
        Test environments available:
        
        ::
        
            pep8
            py27
            py34
            py35
            py36
            pypy
            pypy3
            pylint
            docs
        
        CI systems
        ==========
        For code checking several CI systems is used in parallel:
        
        1. `Travis CI: <https://travis-ci.org/penguinolog/sqlalchemy_jsonfield>`_ is used for checking: PEP8, pylint, bandit, installation possibility and unit tests. Also it's publishes coverage on coveralls.
        
        2. `coveralls: <https://coveralls.io/github/penguinolog/sqlalchemy_jsonfield>`_ is used for coverage display.
        
Keywords: sql sqlalchemy json jsonfield development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires: sqlalchemy

