Runtime imports and dependency utils
Project description
requires
Install: pip install requires
Decorate that lets you Require/Import dependencies at runtime.
Python dependency management can be mind bottlingly complex. Optional dependencies are pretty common. Why not require the dependency at run time if a function requires said dependency?
This package has come in handy in lambda-land where you only get 250mb (on aws)!
Usage:
# This will fail
def uno():
return json.dumps({"a": 1, "b": 2})
try:
uno()
except NameError as ne:
print("Error:", ne)
Error: name 'json' is not defined
# This will not fail
import requires # Module is callable! (checkout funkify for more info -- `pip install funkify`)
@requires("json")
def uno():
return json.dumps({"a": 1, "b": 2})
uno()
'{"a": 1, "b": 2}'
import requires
@requires("from json import dumps")
def uno():
return dumps({"a": 1, "b": 2})
uno()
'{"a": 1, "b": 2}'
def dos():
return dumps({"a": 1, "b": 2})
dos()
'{"a": 1, "b": 2}'
import requires
@requires(_from="json", _import="dumps")
def dos():
return dumps({"a": 1, "b": 2})
dos()
'{"a": 1, "b": 2}'
import requires
@requires(_import="rapidjson", pip="python-rapidjson", conda_forge="python-rapidjson")
def tres():
return rapidjson.dumps({"a": 1, "b": 2})
tres() # Will err if not install with where to install instructions
'{"a":1,"b":2}'
# should error
def quatro():
return path.join("a", "b")
try:
quatro()
except NameError as ne:
print("ERROR:", ne)
ERROR: name 'path' is not defined
from requires import Requirement
os_path_req = Requirement(_import="path", _from="os")
@os_path_req
def quatro():
return path.join("a", "b")
assert isinstance(quatro(), str)
Enforcing requirements
import requires
try:
import alibrary
except ModuleNotFoundError:
requirement = requires.Requirement(
_import="alibrary",
pip=True,
conda_forge="alibrary-conda-listing",
details="Install details",
)
try:
requirement.raise_error()
except requires.RequirementError as err:
print("ERROR:")
print(err)
ERROR:
Module/Package(s) not found/installed; could not import: `import alibrary`
pip install alibrary
conda install -c conda-forge alibrary-conda-listing
Install details
Less verbose version:
import requires
try:
import alibrary
except ModuleNotFoundError:
requires.Requirement(
_import='alibrary',
pip=True,
conda_forge='alibrary-conda-listing',
details="Install details"
).raise_error()
Future ideas?
- Adding support for requiring particular package versions?
- Auto install?
- Allow non pip/conda/conda-forge locations?
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
requires-0.11.0.tar.gz
(9.9 kB
view details)
Built Distribution
requires-0.11.0-py3-none-any.whl
(11.0 kB
view details)
File details
Details for the file requires-0.11.0.tar.gz
.
File metadata
- Download URL: requires-0.11.0.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0ee60d3692eba6fefa93d5f4b5aa2a1f71880918db4e5469c671e1448bddb739
|
|
MD5 |
30d344ef066300a4a4bcb177294ce4ed
|
|
BLAKE2b-256 |
e0f5002b21874651d285c42fc8cd94cdf40b7e2c6218d09e5c1be2d513cda922
|
File details
Details for the file requires-0.11.0-py3-none-any.whl
.
File metadata
- Download URL: requires-0.11.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1f0a20d2fd2eeac5789f3ea0328fd63ef4db5a2973dc37fa23a7acf1021c75bf
|
|
MD5 |
6d9a28c9d2dccd75b316911de32f14b6
|
|
BLAKE2b-256 |
3b76df99f19df196ec8d88c4e8443a4f241543c3579ac8b760daf883276f1d06
|