Metadata-Version: 1.1
Name: sacrud
Version: 0.1.5
Summary: SQLAlchemy CRUD.
Home-page: http://github.com/ITCase/sacrud/
Author: Svintsov Dmitry
Author-email: root@uralbash.ru
License: MIT
Description: |Build Status| |Coverage Status| |Stories in Progress| |PyPI|
        
        sacrud
        ======
        
        sacrud - CRUD interface for SQLAlchemy.
        
        SACRUD will solve your problem of CRUD interface for SQLAlchemy, by
        providing `extension for Pyramid`_ (yet) or use it in pure form. Unlike
        classical CRUD interface, `pyramid\_sacrud`_ allows override and
        flexibly customize interface. (that is closer to django.contrib.admin)
        
        Look how easy it is to use:
        
        .. code:: python
        
            from .models import Groups
            from sacrud.action import CRUD
        
            data = {'name': 'Electronics',
                    'parent_id': '10',}
            group_obj = CRUD(DBSession, Groups, request=data).add()
            print group_obj.id
        
        Installation
        ------------
        
        Install from github:
        
        ::
        
            pip install git+http://github.com/ITCase/sacrud.git
        
        current develop version
        
        ::
        
            pip install git+http://github.com/ITCase/sacrud.git@develop
        
        PyPi:
        
        ::
        
            pip install sacrud
        
        Source:
        
        ::
        
            python setup.py install
        
        Contribute
        ----------
        
        -  Issue Tracker: http://github.com/ITCase/sacrud/issues
        -  Source Code: http://github.com/ITCase/sacrud
        -  Docs: http://sacrud.readthedocs.org
        -  Demo: http://github.com/ITCase/pyramid\_sacrud\_example
        
        Support
        -------
        
        If you are having issues, please let me know. I have a mailing list
        located at: sacrud@uralbash.ru
        
        License
        -------
        
        The project is licensed under the MIT license.
        
        .. _extension for Pyramid: https://github.com/ITCase/pyramid_sacrud
        .. _pyramid\_sacrud: https://github.com/ITCase/pyramid_sacrud
        
        .. |Build Status| image:: https://travis-ci.org/ITCase/sacrud.svg?branch=master
           :target: https://travis-ci.org/ITCase/sacrud
        .. |Coverage Status| image:: https://coveralls.io/repos/ITCase/sacrud/badge.png?branch=master
           :target: https://coveralls.io/r/ITCase/sacrud?branch=master
        .. |Stories in Progress| image:: https://badge.waffle.io/ITCase/sacrud.png?label=in%20progress&title=In%20Progress
           :target: http://waffle.io/ITCase/sacrud
        .. |PyPI| image:: http://img.shields.io/pypi/dm/sacrud.svg
           :target: https://pypi.python.org/pypi/sacrud/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Natural Language :: Russian
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Framework :: Pyramid 
Classifier: Framework :: Flask
Classifier: Topic :: Internet
Classifier: Topic :: Database
