METADATA 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. Metadata-Version: 2.4
  2. Name: hexbytes
  3. Version: 1.3.1
  4. Summary: hexbytes: Python `bytes` subclass that decodes hex, with a readable console output
  5. Home-page: https://github.com/ethereum/hexbytes
  6. Author: The Ethereum Foundation
  7. Author-email: snakecharmers@ethereum.org
  8. License: MIT
  9. Keywords: ethereum
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: MIT License
  13. Classifier: Natural Language :: English
  14. Classifier: Programming Language :: Python :: 3
  15. Classifier: Programming Language :: Python :: 3.8
  16. Classifier: Programming Language :: Python :: 3.9
  17. Classifier: Programming Language :: Python :: 3.10
  18. Classifier: Programming Language :: Python :: 3.11
  19. Classifier: Programming Language :: Python :: 3.12
  20. Classifier: Programming Language :: Python :: 3.13
  21. Requires-Python: >=3.8, <4
  22. Description-Content-Type: text/markdown
  23. License-File: LICENSE
  24. Provides-Extra: dev
  25. Requires-Dist: build>=0.9.0; extra == "dev"
  26. Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
  27. Requires-Dist: ipython; extra == "dev"
  28. Requires-Dist: mypy==1.10.0; extra == "dev"
  29. Requires-Dist: pre-commit>=3.4.0; extra == "dev"
  30. Requires-Dist: tox>=4.0.0; extra == "dev"
  31. Requires-Dist: twine; extra == "dev"
  32. Requires-Dist: wheel; extra == "dev"
  33. Requires-Dist: sphinx>=6.0.0; extra == "dev"
  34. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
  35. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
  36. Requires-Dist: towncrier<25,>=24; extra == "dev"
  37. Requires-Dist: eth_utils>=2.0.0; extra == "dev"
  38. Requires-Dist: hypothesis>=3.44.24; extra == "dev"
  39. Requires-Dist: pytest>=7.0.0; extra == "dev"
  40. Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
  41. Provides-Extra: docs
  42. Requires-Dist: sphinx>=6.0.0; extra == "docs"
  43. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
  44. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
  45. Requires-Dist: towncrier<25,>=24; extra == "docs"
  46. Provides-Extra: test
  47. Requires-Dist: eth_utils>=2.0.0; extra == "test"
  48. Requires-Dist: hypothesis>=3.44.24; extra == "test"
  49. Requires-Dist: pytest>=7.0.0; extra == "test"
  50. Requires-Dist: pytest-xdist>=2.4.0; extra == "test"
  51. Dynamic: author
  52. Dynamic: author-email
  53. Dynamic: classifier
  54. Dynamic: description
  55. Dynamic: description-content-type
  56. Dynamic: home-page
  57. Dynamic: keywords
  58. Dynamic: license
  59. Dynamic: license-file
  60. Dynamic: provides-extra
  61. Dynamic: requires-python
  62. Dynamic: summary
  63. # HexBytes
  64. [![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)
  65. [![Build Status](https://circleci.com/gh/ethereum/hexbytes.svg?style=shield)](https://circleci.com/gh/ethereum/hexbytes)
  66. [![PyPI version](https://badge.fury.io/py/hexbytes.svg)](https://badge.fury.io/py/hexbytes)
  67. [![Python versions](https://img.shields.io/pypi/pyversions/hexbytes.svg)](https://pypi.python.org/pypi/hexbytes)
  68. [![Docs build](https://readthedocs.org/projects/hexbytes/badge/?version=latest)](https://hexbytes.readthedocs.io/en/latest/?badge=latest)
  69. Python `bytes` subclass that decodes hex, with a readable console output
  70. Read the [documentation](https://hexbytes.readthedocs.io/).
  71. View the [change log](https://hexbytes.readthedocs.io/en/latest/release_notes.html).
  72. ## Installation
  73. ```sh
  74. python -m pip install hexbytes
  75. ```