Skip to content

Python package to backport classes from new python releases (for example, enum.StrEnum released in py-3.11), as well as adding some experimental too.

License

Notifications You must be signed in to change notification settings

Jtachan/PyBackport

Repository files navigation

tests_badge PyPI Version Python Version MIT License PyPI Downloads Docs

Python Backport

The py_back modules serve three purposes:

  • Enable the use of new base classes in older Python versions. For example, enum.StrEnum is new in Python 3.11, but py_back allows users on previous versions to use it too.
  • Enable experimental classes not implemented in other modules. For example, enum.TupleEnum is not implemented in enum, but py_back allows users to create enumerations where its members are tuples.
  • Provide of new classes containing commonly used constant values. For example, py_back.colors provides a wrapper to commonly used BGR color codes, like BGR.WHITE to use the color code (255, 255, 255)

Setup

Install the package via pip.

pip install PyBackport

The latest changes on develop can be installed via pip + git:

pip install git+https://github.com/Jtachan/PyBackport.git@develop

📖 Documentation

Documentation can be found:

About

Python package to backport classes from new python releases (for example, enum.StrEnum released in py-3.11), as well as adding some experimental too.

Resources

License

Stars

Watchers

Forks

Packages

No packages published