.. image:: https://github.com/todofixthis/class-registry/actions/workflows/build.yml/badge.svg
:target: https://github.com/todofixthis/class-registry/actions/workflows/build.yml
.. image:: https://readthedocs.org/projects/class-registry/badge/?version=latest
:target: http://class-registry.readthedocs.io/
ClassRegistry
=============
At the intersection of the Registry and Factory patterns lies the ``ClassRegistry``:
- Define global factories that generate new class instances based on configurable keys.
- Seamlessly create powerful service registries.
- Integrate with setuptools's ``entry_points`` system to make your registries infinitely
extensible by 3rd-party libraries!
- And more!
Upgrading from ClassRegistry v4
-------------------------------
.. important::
ClassRegistry v5 introduces some changes that can break code that was previously
using ClassRegistry v4. If you are upgrading from ClassRegistry v4 to ClassRegistry
v5, please read `Upgrading to ClassRegistry v5 <./docs/upgrading_to_v5.rst>`_.
Getting Started
---------------
Create a registry using the ``class_registry.ClassRegistry`` class, then
decorate any classes that you wish to register with its ``register`` method:
.. code-block:: python
from class_registry import ClassRegistry
pokedex = ClassRegistry()
@pokedex.register('fire')
class Charizard(Pokemon):
...
@pokedex.register('grass')
class Bulbasaur(Pokemon):
...
@pokedex.register('water')
class Squirtle(Pokemon):
...
To create a class instance from a registry, use the subscript operator:
.. code-block:: python
# Charizard, I choose you!
fighter1 = pokedex['fire']
# CHARIZARD fainted!
# How come my rival always picks the type that my pokémon is weak against??
fighter2 = pokedex['grass']
.. tip::
If a ``ClassRegistry`` always returns objects derived from a particular base class,
you can provide a
`type parameter <https://typing.readthedocs.io/en/latest/source/generics.html#generics>`_
to help with type checking, autocomplete, etc.:
.. code-block:: python
# Add type parameter ``[Pokemon]``:
pokedex = ClassRegistry[Pokemon]()
# Your IDE will automatically infer that ``fighter1`` is a ``Pokemon``.
fighter1 = pokedex['fire']
Advanced Usage
~~~~~~~~~~~~~~
There's a whole lot more you can do with ClassRegistry, including:
- Provide args and kwargs to new class instances.
- Automatically register non-abstract classes.
- Integrate with setuptools's ``entry_points`` system so that 3rd-party libraries can
add their own classes to your registries.
- Wrap your registry in an instance cache to create a service registry.
- And more!
For more advanced usage, check out the documentation on
`ReadTheDocs <https://class-registry.readthedocs.io/>`_!
Requirements
------------
ClassRegistry is known to be compatible with the following Python versions:
- 3.13
- 3.12
- 3.11
.. note::
I'm only one person, so to keep from getting overwhelmed, I'm only committing to
supporting the 3 most recent versions of Python. ClassRegistry's code is pretty
simple, so it's likely to be compatible with versions not listed here; there just
won't be any test coverage to prove it 😇
Installation
------------
Install the latest stable version via pip::
pip install phx-class-registry
.. important::
Make sure to install `phx-class-registry`, **not** `class-registry`. I created the
latter at a previous job years ago, and after I left they never touched that project
again and stopped responding to my emails — so in the end I had to fork it 🤷
Maintainers
===========
To install the distribution for local development, some additional setup is required:
#. `Install poetry <https://python-poetry.org/docs/#installation>`_ (only needs to be
done once).
#. Run the following command to install additional dependencies::
poetry install --with=dev
#. Activate pre-commit hook::
poetry run autohooks activate --mode=poetry
Running Unit Tests and Type Checker
-----------------------------------
Run the tests for all supported versions of Python using
`tox <https://tox.readthedocs.io/>`_::
poetry run tox -p
.. note::
The first time this runs, it will take awhile, as mypy needs to build up its cache.
Subsequent runs should be much faster.
If you just want to run unit tests in the current virtualenv (using
`pytest <https://docs.pytest.org>`_)::
poetry run pytest
If you just want to run type checking in the current virtualenv (using
`mypy <https://mypy.readthedocs.io>`_)::
poetry run mypy src test
Documentation
-------------
To build the documentation locally:
#. Switch to the ``docs`` directory::
cd docs
#. Build the documentation::
make html
Releases
--------
Steps to build releases are based on
`Packaging Python Projects Tutorial <https://packaging.python.org/en/latest/tutorials/packaging-projects/>`_.
.. important::
Make sure to build releases off of the ``main`` branch, and check that all changes
from ``develop`` have been merged before creating the release!
1. Build the Project
~~~~~~~~~~~~~~~~~~~~
#. Delete artefacts from previous builds, if applicable::
rm dist/*
#. Run the build::
poetry build
#. The build artefacts will be located in the ``dist`` directory at the top
level of the project.
2. Upload to PyPI
~~~~~~~~~~~~~~~~~
#. `Create a PyPI API token <https://pypi.org/manage/account/token/>`_ (you only have to
do this once).
#. Increment the version number in ``pyproject.toml``.
#. Upload build artefacts to PyPI::
poetry publish
3. Create GitHub Release
~~~~~~~~~~~~~~~~~~~~~~~~
#. Create a tag and push to GitHub::
git tag <version>
git push <version>
``<version>`` must match the updated version number in ``pyproject.toml``.
#. Go to the `Releases page for the repo`_.
#. Click ``Draft a new release``.
#. Select the tag that you created in step 1.
#. Specify the title of the release (e.g., ``ClassRegistry v1.2.3``).
#. Write a description for the release. Make sure to include:
- Credit for code contributed by community members.
- Significant functionality that was added/changed/removed.
- Any backwards-incompatible changes and/or migration instructions.
- SHA256 hashes of the build artefacts.
#. GPG-sign the description for the release (ASCII-armoured).
#. Attach the build artefacts to the release.
#. Click ``Publish release``.
.. _Releases page for the repo: https://github.com/todofixthis/class-registry/releases
Raw data
{
"_id": null,
"home_page": "https://github.com/todofixthis/class-registry",
"name": "phx-class-registry",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.11",
"maintainer_email": null,
"keywords": "design pattern, factory pattern, registry pattern, service registry",
"author": "Phoenix Zerin",
"author_email": "phx@phx.nz",
"download_url": "https://files.pythonhosted.org/packages/ad/e1/4038dc8b09e66b1f850913c05fe1c039f8d9c0ef61347af37c75bbe77e3f/phx_class_registry-5.1.1.tar.gz",
"platform": null,
"description": ".. image:: https://github.com/todofixthis/class-registry/actions/workflows/build.yml/badge.svg\n :target: https://github.com/todofixthis/class-registry/actions/workflows/build.yml\n.. image:: https://readthedocs.org/projects/class-registry/badge/?version=latest\n :target: http://class-registry.readthedocs.io/\n\nClassRegistry\n=============\nAt the intersection of the Registry and Factory patterns lies the ``ClassRegistry``:\n\n- Define global factories that generate new class instances based on configurable keys.\n- Seamlessly create powerful service registries.\n- Integrate with setuptools's ``entry_points`` system to make your registries infinitely\n extensible by 3rd-party libraries!\n- And more!\n\nUpgrading from ClassRegistry v4\n-------------------------------\n.. important::\n\n ClassRegistry v5 introduces some changes that can break code that was previously\n using ClassRegistry v4. If you are upgrading from ClassRegistry v4 to ClassRegistry\n v5, please read `Upgrading to ClassRegistry v5 <./docs/upgrading_to_v5.rst>`_.\n\n\nGetting Started\n---------------\nCreate a registry using the ``class_registry.ClassRegistry`` class, then\ndecorate any classes that you wish to register with its ``register`` method:\n\n.. code-block:: python\n\n from class_registry import ClassRegistry\n\n pokedex = ClassRegistry()\n\n @pokedex.register('fire')\n class Charizard(Pokemon):\n ...\n\n @pokedex.register('grass')\n class Bulbasaur(Pokemon):\n ...\n\n @pokedex.register('water')\n class Squirtle(Pokemon):\n ...\n\nTo create a class instance from a registry, use the subscript operator:\n\n.. code-block:: python\n\n # Charizard, I choose you!\n fighter1 = pokedex['fire']\n\n # CHARIZARD fainted!\n # How come my rival always picks the type that my pok\u00e9mon is weak against??\n fighter2 = pokedex['grass']\n\n.. tip::\n\n If a ``ClassRegistry`` always returns objects derived from a particular base class,\n you can provide a\n `type parameter <https://typing.readthedocs.io/en/latest/source/generics.html#generics>`_\n to help with type checking, autocomplete, etc.:\n\n .. code-block:: python\n\n # Add type parameter ``[Pokemon]``:\n pokedex = ClassRegistry[Pokemon]()\n\n # Your IDE will automatically infer that ``fighter1`` is a ``Pokemon``.\n fighter1 = pokedex['fire']\n\n\nAdvanced Usage\n~~~~~~~~~~~~~~\nThere's a whole lot more you can do with ClassRegistry, including:\n\n- Provide args and kwargs to new class instances.\n- Automatically register non-abstract classes.\n- Integrate with setuptools's ``entry_points`` system so that 3rd-party libraries can\n add their own classes to your registries.\n- Wrap your registry in an instance cache to create a service registry.\n- And more!\n\nFor more advanced usage, check out the documentation on\n`ReadTheDocs <https://class-registry.readthedocs.io/>`_!\n\n\nRequirements\n------------\nClassRegistry is known to be compatible with the following Python versions:\n\n- 3.13\n- 3.12\n- 3.11\n\n.. note::\n\n I'm only one person, so to keep from getting overwhelmed, I'm only committing to\n supporting the 3 most recent versions of Python. ClassRegistry's code is pretty\n simple, so it's likely to be compatible with versions not listed here; there just\n won't be any test coverage to prove it \ud83d\ude07\n\nInstallation\n------------\nInstall the latest stable version via pip::\n\n pip install phx-class-registry\n\n.. important::\n\n Make sure to install `phx-class-registry`, **not** `class-registry`. I created the\n latter at a previous job years ago, and after I left they never touched that project\n again and stopped responding to my emails \u2014 so in the end I had to fork it \ud83e\udd37\n\nMaintainers\n===========\nTo install the distribution for local development, some additional setup is required:\n\n#. `Install poetry <https://python-poetry.org/docs/#installation>`_ (only needs to be\n done once).\n\n#. Run the following command to install additional dependencies::\n\n poetry install --with=dev\n\n#. Activate pre-commit hook::\n\n poetry run autohooks activate --mode=poetry\n\nRunning Unit Tests and Type Checker\n-----------------------------------\nRun the tests for all supported versions of Python using\n`tox <https://tox.readthedocs.io/>`_::\n\n poetry run tox -p\n\n.. note::\n\n The first time this runs, it will take awhile, as mypy needs to build up its cache.\n Subsequent runs should be much faster.\n\nIf you just want to run unit tests in the current virtualenv (using\n`pytest <https://docs.pytest.org>`_)::\n\n poetry run pytest\n\nIf you just want to run type checking in the current virtualenv (using\n`mypy <https://mypy.readthedocs.io>`_)::\n\n poetry run mypy src test\n\nDocumentation\n-------------\nTo build the documentation locally:\n\n#. Switch to the ``docs`` directory::\n\n cd docs\n\n#. Build the documentation::\n\n make html\n\nReleases\n--------\nSteps to build releases are based on\n`Packaging Python Projects Tutorial <https://packaging.python.org/en/latest/tutorials/packaging-projects/>`_.\n\n.. important::\n\n Make sure to build releases off of the ``main`` branch, and check that all changes\n from ``develop`` have been merged before creating the release!\n\n1. Build the Project\n~~~~~~~~~~~~~~~~~~~~\n#. Delete artefacts from previous builds, if applicable::\n\n rm dist/*\n\n#. Run the build::\n\n poetry build\n\n#. The build artefacts will be located in the ``dist`` directory at the top\n level of the project.\n\n2. Upload to PyPI\n~~~~~~~~~~~~~~~~~\n#. `Create a PyPI API token <https://pypi.org/manage/account/token/>`_ (you only have to\n do this once).\n#. Increment the version number in ``pyproject.toml``.\n#. Upload build artefacts to PyPI::\n\n poetry publish\n\n3. Create GitHub Release\n~~~~~~~~~~~~~~~~~~~~~~~~\n#. Create a tag and push to GitHub::\n\n git tag <version>\n git push <version>\n\n ``<version>`` must match the updated version number in ``pyproject.toml``.\n\n#. Go to the `Releases page for the repo`_.\n#. Click ``Draft a new release``.\n#. Select the tag that you created in step 1.\n#. Specify the title of the release (e.g., ``ClassRegistry v1.2.3``).\n#. Write a description for the release. Make sure to include:\n - Credit for code contributed by community members.\n - Significant functionality that was added/changed/removed.\n - Any backwards-incompatible changes and/or migration instructions.\n - SHA256 hashes of the build artefacts.\n#. GPG-sign the description for the release (ASCII-armoured).\n#. Attach the build artefacts to the release.\n#. Click ``Publish release``.\n\n.. _Releases page for the repo: https://github.com/todofixthis/class-registry/releases\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Factory+Registry pattern for Python classes",
"version": "5.1.1",
"project_urls": {
"Changelog": "https://github.com/todofixthis/class-registry/releases",
"Documentation": "https://class-registry.readthedocs.io/",
"Homepage": "https://github.com/todofixthis/class-registry",
"Issues": "https://github.com/todofixthis/class-registry/issues",
"Repository": "https://github.com/todofixthis/class-registry"
},
"split_keywords": [
"design pattern",
" factory pattern",
" registry pattern",
" service registry"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "7d8567eb86f25b1857a7669c4ad7a46b439e55c5301cbcb08b9ce8fa9125700d",
"md5": "8913f6a3e97b966dfb263f31e2db7e33",
"sha256": "b093ecc1dad34c5dc6eda2530046d956f2303a5cfaa543bf7fba35ce3c7b1672"
},
"downloads": -1,
"filename": "phx_class_registry-5.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "8913f6a3e97b966dfb263f31e2db7e33",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.11",
"size": 15732,
"upload_time": "2024-10-17T19:41:54",
"upload_time_iso_8601": "2024-10-17T19:41:54.592857Z",
"url": "https://files.pythonhosted.org/packages/7d/85/67eb86f25b1857a7669c4ad7a46b439e55c5301cbcb08b9ce8fa9125700d/phx_class_registry-5.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ade14038dc8b09e66b1f850913c05fe1c039f8d9c0ef61347af37c75bbe77e3f",
"md5": "1083cb406b0cb36c3bc276e6c6791c9a",
"sha256": "06c9af198b846a7530406314f63f8d83441daf42d29ee25d8c0b19a9dbc37939"
},
"downloads": -1,
"filename": "phx_class_registry-5.1.1.tar.gz",
"has_sig": false,
"md5_digest": "1083cb406b0cb36c3bc276e6c6791c9a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.11",
"size": 32115,
"upload_time": "2024-10-17T19:41:56",
"upload_time_iso_8601": "2024-10-17T19:41:56.630523Z",
"url": "https://files.pythonhosted.org/packages/ad/e1/4038dc8b09e66b1f850913c05fe1c039f8d9c0ef61347af37c75bbe77e3f/phx_class_registry-5.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-17 19:41:56",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "todofixthis",
"github_project": "class-registry",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "phx-class-registry"
}