Reuse generic class type arguments at runtime.
Project description
runtime_generics
Highly into type-safe Python code?
runtime_generics is a niche Python library that allows you to reuse type arguments explicitly passed at runtime to generic classes before instantiation.
The library does three things:
- makes it possible to retrieve the type arguments passed to the generic class at runtime before the class was instantiated;
- given a parametrized generic class (generic alias),
it makes every class method use generic alias
cls
instead of the origin class; - offers facilities to find how parent classes are parametrized,
so e.g. if
Foo[T]
inherits fromDict[str, T]
, find thatDict[str, int]
is a parent forFoo[int]
.
A simple example
3.12+ (PEP 695 syntax):
from runtime_generics import get_type_arguments, runtime_generic
@runtime_generic
class MyGeneric[T]:
type_argument: type[T]
def __init__(self) -> None:
(self.type_argument,) = get_type_arguments(self)
@classmethod
def whoami(cls) -> None:
print(f"I am {cls}")
my_generic = MyGeneric[int]()
assert my_generic.type_argument is int
my_generic.whoami() # I am MyGeneric[int]
3.8+:
from __future__ import annotations
from typing import Generic, TypeVar
from runtime_generics import get_type_arguments, runtime_generic
T = TypeVar("T")
@runtime_generic
class MyGeneric(Generic[T]):
type_argument: type[T]
def __init__(self) -> None:
(self.type_argument,) = get_type_arguments(self)
@classmethod
def whoami(cls) -> None:
print(f"I am {cls}")
my_generic = MyGeneric[int]()
assert my_generic.type_argument is int
my_generic.whoami() # I am MyGeneric[int]
Installation
You might simply install it with pip:
pip install runtime-generics
If you use Poetry, then you might want to run:
poetry add runtime-generics
For contributors
[!Note] If you use Windows, it is highly recommended to complete the installation in the way presented below through WSL2.
-
Fork the runtime_generics repository on GitHub.
-
Install Poetry.
Poetry is an amazing tool for managing dependencies & virtual environments, building packages and publishing them. You might use pipx to install it globally (recommended):pipx install poetry
If you encounter any problems, refer to the official documentation for the most up-to-date installation instructions.
Be sure to have Python 3.8 installed—if you use pyenv, simply run:
pyenv install 3.8
-
Clone your fork locally and install dependencies.
git clone https://github.com/your-username/runtime_generics path/to/runtime_generics cd path/to/runtime_generics poetry env use $(cat .python-version) poetry install
Next up, simply activate the virtual environment and install pre-commit hooks:
poetry shell pre-commit install
For more information on how to contribute, check out CONTRIBUTING.md.
Always happy to accept contributions! ❤️
Legal info
© Copyright by Bartosz Sławecki (@bswck).
This software is licensed under the terms of MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file runtime_generics-3.0.2.tar.gz
.
File metadata
- Download URL: runtime_generics-3.0.2.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 608a01a2d569d71af4d02d43adfc91533a9a1a5a242758b0dd07f6caf2dbcab0 |
|
MD5 | 036472071ab1e3862c946260538cd1dd |
|
BLAKE2b-256 | e0a9494450dc1f67b227262c091393b9cfced73883e89141fc0c4f585d3f1c50 |
File details
Details for the file runtime_generics-3.0.2-py3-none-any.whl
.
File metadata
- Download URL: runtime_generics-3.0.2-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94fa9bacb52f462f6c41d9f5f7c3b18d828750075014a0c41ca3540d1ffa85fe |
|
MD5 | 27bcd0a8ce557922a9252fa3b1a76e58 |
|
BLAKE2b-256 | 0c1f632c96bc987e699267d672ace771cb515ae9d40bca961f9d0477def43b0e |