Metadata-Version: 2.1
Name: gera2ld-pyserve
Version: 0.1.0
Summary: Start serving an asyncio.Server
License: MIT
Author: Gerald
Author-email: gera2ld@163.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Provides-Extra: aio
Requires-Dist: aiohttp (>=3.6.2,<4.0.0); extra == "aio"
Description-Content-Type: text/x-rst

gera2ld.pyserve
===============

.. image:: https://img.shields.io/pypi/v/gera2ld-pyserve.svg

Serve asyncio and aiohttp servers, and show information for development.

Installation
------------

.. code-block:: sh

    $ pip install gera2ld-pyserve

    # or with extra `aio` if aiohttp applications are to be served
    $ pip install gera2ld-pyserve[aio]

Usage
-----

.. code-block:: python

    from gera2ld.pyserve import serve_asyncio

    def handle(reader, writer):
        # add more code here...

    serve_asyncio(handle, ':4000')

.. code-block:: python

    from gera2ld.pyserve import serve_aiohttp
    from aiohttp import web

    app = web.Application()
    # add more code here...

    serve_aiohttp(app, ':4000')

