Contextvars made easy (WARNING: unstable alpha version. Things may break).
Project description
Warning!
The code is at the early development stage, and may be unstable. Use with caution.
contextvars-extras is a set of extensions for the Python’s contextvars module.
In case you are not familiar with the contextvars module, its ContextVar objects work like Thread-Local storage, but better: they are both thread-safe and async task-safe, and they can be copied (all existing vars copied in O(1) time), and then you can run a function in the copied and isolated context.
The contextvars is a powerful module, but its API seems too low-level.
So this contextvars_extras package provides some higher-level additions on top of the standard API, like, for example, organizing ContextVar objects into registry classes, with nice @property-like access:
from contextvars_extras import ContextVarsRegistry
class CurrentVars(ContextVarsRegistry):
locale: str = 'en'
timezone: str = 'UTC'
current = CurrentVars()
# calls ContextVar.get() under the hood
current.timezone # => 'UTC'
# calls ContextVar.set() under the hood
current.timezone = 'GMT'
# ContextVar() objects can be reached as class members
CurrentVars.timezone.get() # => 'GMT'
That makes your code more readable (no more noisy .get() calls), and it is naturally firendly to typing, so static code analysis features (like type checkers and auto-completion in your IDE) work nicely.
Check out the full documentation
Links
Read the Docs: https://contextvars-extras.readthedocs.io
GitHub repository: https://github.com/vdmit11/contextvars-extras
Python package: https://pypi.org/project/contextvars-extras/
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
Hashes for contextvars-extras-0.0.11.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5748550ade483e301e37754fe4a4a75e8058862dbcf079a6384971616a2a39bd |
|
MD5 | 65e6ac26d57581a598f7601b3c20c1e1 |
|
BLAKE2b-256 | 5cddee378b3a5218780be6be53353c2f8098346c3fb717135dcd9863906dd2d3 |
Hashes for contextvars_extras-0.0.11-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c69dd0f58508c1b4f9e7c56fe779d6cc463b7242cd44d247e17a520b66d606a2 |
|
MD5 | 76c0828c594a13daa190426b2f08e30a |
|
BLAKE2b-256 | 59fc26681e58ca9d579830db85681c87f9ddabe1fe5f41c0dcb6a31ed2b0355a |