Metadata-Version: 1.1
Name: hug_peewee
Version: 0.0.2
Summary: An extension to hug that adds clean integration with the peewee ORM
Home-page: https://github.com/timothycrosley/hug_peewee
Author: Timothy Crosley
Author-email: timothy.crosley@gmail.com
License: MIT
Description: hug\_peewee
        ===========
        
        |PyPI version| |Build Status| |Coverage Status| |License| |Join the chat
        at https://gitter.im/timothycrosley/hug\_peewee|
        
        An extension to hug that adds clean integration with the peewee ORM:
        
        .. code:: py
        
            import hug_peewee
        
            db = hug_peewee.connection.manage(__name__, 'sqlite', 'my.db')
        
        Works with hug 2.1.0 or greater.
        
        Installing hug\_peewee
        ======================
        
        Installing hug\_peewee is as simple as:
        
        .. code:: bash
        
            pip3 install hug_peewee --upgrade
        
        Ideally, within a virtual environment.
        
        What is hug\_peewee?
        ====================
        
        An extension to hug that adds clean integration with the peewee ORM
        
        --------------
        
        Thanks and I hope you find hug\_peewee helpful!
        
        ~Timothy Crosley
        
        .. |PyPI version| image:: https://badge.fury.io/py/hug_peewee.svg
           :target: http://badge.fury.io/py/hug_peewee
        .. |Build Status| image:: https://travis-ci.org/timothycrosley/hug_peewee.svg?branch=master
           :target: https://travis-ci.org/timothycrosley/hug_peewee
        .. |Coverage Status| image:: https://coveralls.io/repos/timothycrosley/hug_peewee/badge.svg?branch=master&service=github
           :target: https://coveralls.io/github/timothycrosley/hug_peewee?branch=master
        .. |License| image:: https://img.shields.io/github/license/mashape/apistatus.svg
           :target: https://pypi.python.org/pypi/hug_peewee/
        .. |Join the chat at https://gitter.im/timothycrosley/hug\_peewee| image:: https://badges.gitter.im/Join%20Chat.svg
           :target: https://gitter.im/timothycrosley/hug_peewee?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
        
Keywords: Python,Python3
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires: hug
Requires: peewee
