Metadata-Version: 2.1
Name: magichttp
Version: 1.1.2
Summary: An http stack for asyncio.
Home-page: https://github.com/futursolo/magichttp
License: Apache-2.0
Author: Kaede Hoshikawa
Author-email: futursolo@icloud.com
Requires-Python: >=3.6.1,<4.0.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Dist: importlib-metadata (>=4.0.1,<5.0.0); python_version <= "3.7"
Requires-Dist: magicdict (>=1.0.6,<2.0.0)
Project-URL: Repository, https://github.com/futursolo/magichttp
Description-Content-Type: text/x-rst

magichttp
=========
.. image:: https://github.com/futursolo/magichttp/actions/workflows/everything.yml/badge.svg
    :target: https://github.com/futursolo/magichttp/actions/workflows/everything.yml

.. image:: https://coveralls.io/repos/github/futursolo/magichttp/badge.svg?branch=master
    :target: https://coveralls.io/github/futursolo/magichttp

.. image:: https://img.shields.io/pypi/v/magichttp.svg
    :target: https://pypi.org/project/magichttp/

Asynchronous http, made easy.

Magichttp is an http stack for asyncio, which provides one the ability to create
their own async http client/server without diving into the http protocol
implementation.

Install
-------

.. code-block:: shell

  $ pip install magichttp -U


Usage
-----
See :code:`examples/echo_client.py` and :code:`examples/echo_server.py`.

Under Development
-----------------
Magichttp is in beta. Basic unittests and contract checks are in place;
however, it still may have unknown bugs. Bug reports and pull requests are
always welcomed.

License
-------
Copyright 2021 Kaede Hoshikawa

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

