Metadata-Version: 1.1
Name: aiohttp_utils
Version: 0.1.0
Summary: Handy utilities for aiohttp.web applications.
Home-page: https://github.com/sloria/aiohttp_utils
Author: Steven Loria
Author-email: sloria1@gmail.com
License: Copyright 2015 Steven Loria

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Description: *************
        aiohttp_utils
        *************
        
        .. image:: https://badge.fury.io/py/aiohttp_utils.png
            :target: http://badge.fury.io/py/aiohttp_utils
            :alt: Latest version
        
        .. image:: https://travis-ci.org/sloria/aiohttp_utils.png
            :target: https://travis-ci.org/sloria/aiohttp_utils
            :alt: Travis-CI
        
        **aiohttp_utils** provides handy utilities for building `aiohttp.web <http://aiohttp.readthedocs.org/>`_ applications.
        
        
        * Method-based handlers ("resources")
        * Content negotiation with JSON rendering by default
        * Local development server with auto-reloading
        * And more
        
        **Everything is optional**. You can use as much (or as little) of the toolkit as you need.
        
        .. code-block:: python
        
            from aiohttp import web
            from aiohttp_utils import Response, routing, negotiation, runner
        
            app = web.Application(router=routing.ResourceRouter())
        
            # Method-based handlers
            class HelloResource:
        
                async def get(self, request):
                    name = request.GET.get('name', 'World')
                    return Response({
                        'message': 'Hello ' + name
                    })
        
        
            app.router.add_resource('/', HelloResource())
        
            # Content negotiation
            negotiation.setup(app, {
                'RENDERERS': {
                    'application/json': negotiation.render_json
                }
            })
        
            if __name__ == '__main__':
                # Development server
                runner.run(
                    app,
                    app_uri='hello.app:app',
                    reload=True,
                    port=8000
                )
        
        Install
        =======
        ::
        
            $ pip install aiohttp_utils
        
        Documentation
        =============
        
        Full documentation is available at https://aiohttp-utils.readthedocs.org/.
        
        Project Links
        =============
        
        - Docs: http://aiohttp-utils.readthedocs.org/
        - Changelog: http://aiohttp-utils.readthedocs.org/en/latest/changelog.html
        - PyPI: https://pypi.python.org/pypi/aiohttp_utils
        - Issues: https://github.com/sloria/aiohttp_utils/issues
        
        License
        =======
        
        MIT licensed. See the bundled `LICENSE <https://github.com/sloria/aiohttp_utils/blob/master/LICENSE>`_ file for more details.
        
Keywords: aiohttp_utils aiohttp utilities aiohttp.web
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
