Tool to support lazy imports
Project description
Lazy-Imports
This is a Python tool to support lazy imports.
Likewise, the actual initialization of the module does not occur until usage time
to postpone ModuleNotFoundError
s to the time of the actual usage of the module.
This is useful when using various optional dependencies which might not all be
installed or which have high load times and/or ressource consumption.
Table of Contents
- Maintainers
- Installation
- Usage & Example for LazyImporter
- Usage & Example for try_import
- Support and Feedback
- Licensing
Maintainers
This project is maintained by the One Conversation
team of Deutsche Telekom AG.
It is based on
_LazyModule
from HuggingFace and
try_import()
from the Optuna framework.
Many thanks to HuggingFace for
your consent
and to Optuna for
your consent
to publish it as a standalone package 🤗 ♥.
Installation
Lazy-Imports is available at the Python Package Index (PyPI). It can be installed with pip:
$ pip install lazy-imports
Usage & Example for LazyImporter
A good and easy to understand example of how to use Lazy-Imports can be found in the
__init__.py
file of the HPOflow package.
It is printed here:
import sys
from typing import TYPE_CHECKING
from lazy_imports import LazyImporter
from hpoflow.version import __version__
_import_structure = {
"mlflow": [
"normalize_mlflow_entry_name",
"normalize_mlflow_entry_names_in_dict",
"check_repo_is_dirty",
],
"optuna": ["SignificanceRepeatedTrainingPruner"],
"optuna_mlflow": ["OptunaMLflow"],
"optuna_transformers": ["OptunaMLflowCallback"],
"utils": ["func_no_exception_caller"],
}
# Direct imports for type-checking
if TYPE_CHECKING:
from hpoflow.mlflow import ( # noqa: F401
check_repo_is_dirty,
normalize_mlflow_entry_name,
normalize_mlflow_entry_names_in_dict,
)
from hpoflow.optuna import SignificanceRepeatedTrainingPruner # noqa: F401
from hpoflow.optuna_mlflow import OptunaMLflow # noqa: F401
from hpoflow.optuna_transformers import OptunaMLflowCallback # noqa: F401
from hpoflow.utils import func_no_exception_caller # noqa: F401
else:
sys.modules[__name__] = LazyImporter(
__name__,
globals()["__file__"],
_import_structure,
extra_objects={"__version__": __version__},
)
Usage & Example for try_import
try_import
is a context manager that can wrap imports of optional packages to defer
exceptions. This way you don't have to import the packages every time you call a function,
but you can still import the package at the top of your module. The context manager
defers the exceptions until you actually need to use the package.
You can see an example below:
import abc
from lazy_imports import try_import
with try_import() as optional_package_import: # use try_import as a context manager
import optional_package # optional package that might not be installed
# other non optional functions here
def optional_function(): # optional function that uses the optional package
optional_package_import.check() # check if the import was ok or raise a meaningful exception
optional_package.some_external_function() # use the optional package here
Support and Feedback
The following channels are available for discussions, feedback, and support requests:
Licensing
Copyright (c) 2021 Philip May, Deutsche Telekom AG
Copyright (c) 2020, 2021 The HuggingFace Team
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the 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
Hashes for lazy_imports-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b406d54e8338b2b70df4796ef7233576496047e165f6ea54b6e839f588945ca5 |
|
MD5 | 6ee62e35932b4b840e970003721f2915 |
|
BLAKE2b-256 | 29005fe206b4c1195aefb174faba4b4a38b4edd5f3adb1cf50476512eab86c0a |