Creates lazily-imported modules in a more readable and safer way.
Project description
lazyr
Creates lazily-imported modules in a more readable and safer way.
A lazily-imported module (or a lazy module, to be short) is not physically loaded in the Python environment until its attributes are being accessed. This could be useful when you are importing some modules that are hardly used but take a lot of time to be loaded.
README.md
Installation
$ pip install lazyr
Usage
Make a lazy module
Make numpy become a lazy module, for example:
>>> import lazyr
>>> lazyr.register("numpy") # numpy becomes a lazy module
LazyModule(numpy) # this is the LazyModule object
>>> import numpy as np # numpy is not loaded since it's lazy
>>> np
LazyModule(numpy) # np is assigned the LazyModule object instead
>>> arr = np.array([]) # numpy is actually loaded now
>>> np
<module 'numpy' from '/../..'>
There is also a simpler way to create a lazy module, but it may cause type hints to lose efficacy:
>>> np = lazyr.register("numpy")
Check if a module is lazy
Use islazy() to check if a module is lazy or not:
>>> scipy = lazyr.register("scipy")
>>> lazyr.islazy(scipy)
True
Wake up a module
The lazy modules are not physically loaded until their attrubutes are imported or used, but sometimes you may want to activate a lazy module without accessing any of its attributes. On that purpose, you can 'wake up' the module like this:
>>> lazyr.wakeup(scipy) # scipy is woken up and loaded
>>> lazyr.islazy(scipy)
False
Ignore attributes
You can make a module even lazier by setting the ignore parameter of register(), which specifies the names of submodules to be ignored. The ignored submodules will become lazy modules, too.
>>> lazyr.register("pandas", ignore=["DataFrame", "Series"]) # make DataFrame and Series lazy modules
LazyModule(pandas, ignore=['DataFrame', 'Series'])
The statement above has roughly the same effect as the following code piece:
>>> _, _ = lazyr.register("pandas.DataFrame"), lazyr.register("pandas.Series")
List all lazy modules
Use listall() to check all the inactivated lazy modules in the system:
>>> lazyr.listall()
[LazyModule(pandas, ignore=['Series', 'DataFrame']), LazyModule(pandas.DataFrame), LazyModule(pandas.Series)]
Logging
Specify the verbose parameter when calling register() to see what exactly will happen to a lazy module during the runtime:
>>> _ = lazyr.register("matplotlib.pyplot", verbose=2)
INFO:lazyr:register --> matplotlib.pyplot
INFO:lazyr:register --> matplotlib
>>> import matplotlib.pyplot as plt
DEBUG:lazyr:access --> matplotlib.pyplot.__spec__
DEBUG:lazyr:access --> matplotlib.__spec__
DEBUG:lazyr:access --> matplotlib.pyplot
>>> plot = plt.plot
DEBUG:lazyr:access --> matplotlib.pyplot.plot
INFO:lazyr:load --> matplotlib.pyplot(.plot)
See Also
Github repository
PyPI project
License
This project falls under the BSD 3-Clause License.
History
v0.0.24
- Updated
register(): verbosity will be set to the argumentverboseif lazy module exists. - Beautified the logging messages.
v0.0.23
- Updated
register(): now error will be raised when attempting relative import with no known parent package.
v0.0.21
- Updated the logging function.
v0.0.19
- New global variable
VERBOSE.
v0.0.18
- Even objects that are not modules can be registered as lazy-modules now, e.g.,
pandas.DataFrame,numpy.array, etc. - The statement
register("foo", ignore=["bar"])will have the same effect asregister("foo.bar")now. - New function
list(), for checking all the inactivated lazy modules in the system.
v0.0.17
- Updated README.
v0.0.16
- New function
islazy(), for checking the status of a module. - Improved the representational strings of lazy modules.
v0.0.15
- Various improvements.
v0.0.12
- Prettier logs.
v0.0.11
- Fixed the meta-data.
- Performance enhancements.
v0.0.9
- Updated LICENSE.
v0.0.7
- Removed unnecessary objects from the main
lazyrnamespace.
v0.0.6
- Improved logging:
- Created a separate logger named 'lazyr' for lazy modules;
- More detailed logs when
verbose> 0.
v0.0.4
LazyModuleno longer activated by_ipython_*()or_repr_*()methods.
v0.0.3
- Various improvements.
v0.0.2
- New function
wakeup(), for compulsively activating modules.
v0.0.1
- Initial release.
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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lazyr-0.0.24-py2.py3-none-any.whl.
File metadata
- Download URL: lazyr-0.0.24-py2.py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
901ae02c4542c2fa8b2c7459145ea710f8795057d625f4456bc99aa20e333ac3
|
|
| MD5 |
acb5a7565a40dc49dc5de8db5927d16c
|
|
| BLAKE2b-256 |
1309bada440f43894f928f53464b2c024526ee29a43d6d12afe5539f28508049
|