PEP 567 Backport
Project description
PEP 567 Backport
This package implements a backport of Python 3.7 contextvars module (see PEP 567) for Python 3.6.
Important: at this moment this package does not provide an asyncio event loop with PEP 567 support yet. Stay tuned for updates.
Original “contextvars” Package
This package replaces the old “contextvars” PyPI package which repository is available here.
Documentation
Read the official contextvars module documentation here: https://docs.python.org/3.7/library/contextvars.html
PEP 567 also provides a comprehensive overview of the API and explains all design choices.
Installation
$ pip install contextvars
Usage
import contextvars
my_var = contextvars.ContextVar('my_var')
# ...
Listing as a Dependency
The good news is that the standard library always takes the precedence over site packages, so even if a local contextvars module is installed, the one from the standard library will be used. Therefore you can simply list “contextvars” in your requirements.txt or setup.py files.
Another option is to use “platform specific dependencies” setuptools feature:
import setuptools
setuptools.setup(
name="Project",
...
install_requires=[
'contextvars;python_version<"3.7"'
]
)
License
Apache 2.0.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file contextvars-2.2.tar.gz
.
File metadata
- Download URL: contextvars-2.2.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d73f8b1426cf0200fbe16900fcd73c9be29c54546b48a3980727e670b1acb10 |
|
MD5 | 8bb81a5b91a6e91cc018d7f681ae217b |
|
BLAKE2b-256 | 6b1bbc1871b808e06f822d7f8ab7a415e982b18c55791c899040426fade365bf |