Metadata-Version: 1.1
Name: hug_yaml
Version: 1.0.0
Summary: An extension for hug that provides YAML input formats, output formats, and documentation.
Home-page: https://github.com/timothycrosley/hug_yaml
Author: Timothy Crosley
Author-email: timothy.crosley@gmail.com
License: MIT
Description: hug\_yaml
        =========
        
        |PyPI version| |Build Status| |Coverage Status| |License| |Join the chat
        at https://gitter.im/timothycrosley/hug|
        
        An extension for hug that provides YAML input formats, output formats,
        and documentation:
        
        .. code:: py
        
            import hug
            import hug_yaml
        
            hug.API(__name__).extend(input_format)
        
        
            @hug.not_found(output=hug_yaml.output)
            def documentation(hug_api, hug_api_version):
                return hug_yaml.not_found.documentation(hug_api, hug_api_version)
        
        Installing hug\_yaml
        ====================
        
        Installing hug\_yaml is as simple as:
        
        .. code:: bash
        
            pip3 install hug_yaml --upgrade
        
        Ideally, within a virtual environment.
        
        Why hug\_yaml?
        ==============
        
        An extension for hug that provides YAML input formats, output formats,
        and documentation.
        
        --------------
        
        Thanks and I hope you find hug\_yaml helpful!
        
        ~Timothy Crosley
        
        .. |PyPI version| image:: https://badge.fury.io/py/hug_yaml.svg
           :target: http://badge.fury.io/py/hug_yaml
        .. |Build Status| image:: https://travis-ci.org/timothycrosley/hug_yaml.svg?branch=master
           :target: https://travis-ci.org/timothycrosley/hug_yaml
        .. |Coverage Status| image:: https://coveralls.io/repos/timothycrosley/hug_yaml/badge.svg?branch=master&service=github
           :target: https://coveralls.io/github/timothycrosley/hug_yaml?branch=master
        .. |License| image:: https://img.shields.io/github/license/mashape/apistatus.svg
           :target: https://pypi.python.org/pypi/hug_yaml/
        .. |Join the chat at https://gitter.im/timothycrosley/hug| image:: https://badges.gitter.im/Join%20Chat.svg
           :target: https://gitter.im/timothycrosley/hug?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: PyYAML
Requires: hug
