-
Notifications
You must be signed in to change notification settings - Fork 0
installation
kairos edited this page Aug 14, 2025
·
1 revision
WizeDispatcher is distributed as a pure‑Python package. To install it,
ensure you have Python 3.8 or newer. You can install it from the
Python Package Index (PyPI) using pip:
pip install wizedispatcherAlternatively, if you prefer to work with the latest development version, clone the repository and install it in editable mode:
git clone https://github.com/kairos-xx/wizedispatcher.git
cd wizedispatcher
pip install -e .In both cases, WizeDispatcher has no external dependencies beyond the Python standard library. After installation, you can import the library as follows:
from wizedispatcher import dispatch
@dispatch.fn(int)
def _(value: int) -> str:
...If you encounter problems installing the package, ensure your pip and setuptools are up to date:
pip install --upgrade pip setuptools