METADATA 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. Metadata-Version: 2.2
  2. Name: hyperframe
  3. Version: 6.1.0
  4. Summary: Pure-Python HTTP/2 framing
  5. Author-email: Cory Benfield <cory@lukasa.co.uk>
  6. Maintainer-email: Thomas Kriechbaumer <thomas@kriechbaumer.name>
  7. License: The MIT License (MIT)
  8. Copyright (c) 2014 Cory Benfield
  9. Permission is hereby granted, free of charge, to any person obtaining a copy
  10. of this software and associated documentation files (the "Software"), to deal
  11. in the Software without restriction, including without limitation the rights
  12. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. copies of the Software, and to permit persons to whom the Software is
  14. furnished to do so, subject to the following conditions:
  15. The above copyright notice and this permission notice shall be included in
  16. all copies or substantial portions of the Software.
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. THE SOFTWARE.
  24. Project-URL: Homepage, https://github.com/python-hyper/hyperframe/
  25. Project-URL: Bug Reports, https://github.com/python-hyper/hyperframe/issues
  26. Project-URL: Source, https://github.com/python-hyper/hyperframe/
  27. Project-URL: Documentation, https://python-hyper.org/
  28. Classifier: Development Status :: 5 - Production/Stable
  29. Classifier: Intended Audience :: Developers
  30. Classifier: License :: OSI Approved :: MIT License
  31. Classifier: Programming Language :: Python
  32. Classifier: Programming Language :: Python :: 3 :: Only
  33. Classifier: Programming Language :: Python :: 3
  34. Classifier: Programming Language :: Python :: 3.9
  35. Classifier: Programming Language :: Python :: 3.10
  36. Classifier: Programming Language :: Python :: 3.11
  37. Classifier: Programming Language :: Python :: 3.12
  38. Classifier: Programming Language :: Python :: 3.13
  39. Classifier: Programming Language :: Python :: Implementation :: CPython
  40. Classifier: Programming Language :: Python :: Implementation :: PyPy
  41. Requires-Python: >=3.9
  42. Description-Content-Type: text/x-rst
  43. License-File: LICENSE
  44. ======================================
  45. hyperframe: Pure-Python HTTP/2 framing
  46. ======================================
  47. .. image:: https://github.com/python-hyper/hyperframe/workflows/CI/badge.svg
  48. :target: https://github.com/python-hyper/hyperframe/actions
  49. :alt: Build Status
  50. .. image:: https://codecov.io/gh/python-hyper/hyperframe/branch/master/graph/badge.svg
  51. :target: https://codecov.io/gh/python-hyper/hyperframe
  52. :alt: Code Coverage
  53. .. image:: https://readthedocs.org/projects/hyperframe/badge/?version=latest
  54. :target: https://hyperframe.readthedocs.io/en/latest/
  55. :alt: Documentation Status
  56. .. image:: https://img.shields.io/badge/chat-join_now-brightgreen.svg
  57. :target: https://gitter.im/python-hyper/community
  58. :alt: Chat community
  59. This library contains the HTTP/2 framing code used in the `hyper`_ project. It
  60. provides a pure-Python codebase that is capable of decoding a binary stream
  61. into HTTP/2 frames.
  62. This library is used directly by `hyper`_ and a number of other projects to
  63. provide HTTP/2 frame decoding logic.
  64. Contributing
  65. ============
  66. hyperframe welcomes contributions from anyone! Unlike many other projects we
  67. are happy to accept cosmetic contributions and small contributions, in addition
  68. to large feature requests and changes.
  69. Before you contribute (either by opening an issue or filing a pull request),
  70. please `read the contribution guidelines`_.
  71. .. _read the contribution guidelines: http://hyper.readthedocs.org/en/development/contributing.html
  72. License
  73. =======
  74. hyperframe is made available under the MIT License. For more details, see the
  75. ``LICENSE`` file in the repository.
  76. Authors
  77. =======
  78. hyperframe is maintained by Cory Benfield, with contributions from others. For
  79. more details about the contributors, please see ``CONTRIBUTORS.rst``.
  80. .. _hyper: http://python-hyper.org/