README.rst (1840B)
1 ====================================== 2 hyperframe: Pure-Python HTTP/2 framing 3 ====================================== 4 5 .. image:: https://github.com/python-hyper/hyperframe/workflows/CI/badge.svg 6 :target: https://github.com/python-hyper/hyperframe/actions 7 :alt: Build Status 8 .. image:: https://codecov.io/gh/python-hyper/hyperframe/branch/master/graph/badge.svg 9 :target: https://codecov.io/gh/python-hyper/hyperframe 10 :alt: Code Coverage 11 .. image:: https://readthedocs.org/projects/hyperframe/badge/?version=latest 12 :target: https://hyperframe.readthedocs.io/en/latest/ 13 :alt: Documentation Status 14 .. image:: https://img.shields.io/badge/chat-join_now-brightgreen.svg 15 :target: https://gitter.im/python-hyper/community 16 :alt: Chat community 17 18 This library contains the HTTP/2 framing code used in the `hyper`_ project. It 19 provides a pure-Python codebase that is capable of decoding a binary stream 20 into HTTP/2 frames. 21 22 This library is used directly by `hyper`_ and a number of other projects to 23 provide HTTP/2 frame decoding logic. 24 25 Contributing 26 ============ 27 28 hyperframe welcomes contributions from anyone! Unlike many other projects we 29 are happy to accept cosmetic contributions and small contributions, in addition 30 to large feature requests and changes. 31 32 Before you contribute (either by opening an issue or filing a pull request), 33 please `read the contribution guidelines`_. 34 35 .. _read the contribution guidelines: http://hyper.readthedocs.org/en/development/contributing.html 36 37 License 38 ======= 39 40 hyperframe is made available under the MIT License. For more details, see the 41 ``LICENSE`` file in the repository. 42 43 Authors 44 ======= 45 46 hyperframe is maintained by Cory Benfield, with contributions from others. For 47 more details about the contributors, please see ``CONTRIBUTORS.rst``. 48 49 .. _hyper: http://python-hyper.org/