dynamic importer for LilliePy framework
Project description
lilliepy_import
lilliepy_import is a Python package that provides utility functions for dynamically importing modules and components. It is designed to make it easy to set a component directory and load specific functions or classes dynamically.
Features
- Dynamically set a component folder using
Importer. - Import specific functions or classes from files in the component folder with
_import. - Supports dynamic module imports with error handling.
Installation
To install the package, use pip:
pip install lilliepy_import
Usage
Setting the Component Folder
First, set the component folder where your modules are stored:
from lilliepy_import import Importer
# Set the component folder
Importer("components")
Importing a Function or Class
You can then dynamically import a specific function or class:
from lilliepy_import import _import
# Dynamically import a function or class
try:
my_function = _import("my_module.py", "my_function")
if my_function:
my_function() # Call the imported function
else:
print("Function not found in the module.")
except Exception as e:
print(f"Error: {e}")
Example
Assume the following directory structure:
project/
├── components/
│ └── my_module.py
└── main.py
my_module.py:
from reactpy import component, html
@component
def my_function():
return html.h1("yo")
main.py:
from lilliepy_import import Importer, _import
# Set the component folder
Importer("components")
# Import and call the function
func = _import("my_module.py", "my_function")
if func:
func()
When you run main.py, the output will be:
Hello from my_function!
Error Handling
- Raises a
ValueErrorif the component folder is not set before calling_import. - Raises a
FileNotFoundErrorif the specified file does not exist. - Handles cases where the function or class is not found in the module.
License
This project is licensed under the MIT License.
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
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 lilliepy_import-1.4.tar.gz.
File metadata
- Download URL: lilliepy_import-1.4.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6a4aaee4227c800b3ae2350ce2e15f7f8ff4b73b5f19a40eb56d3ff21ee222b
|
|
| MD5 |
4e017a63541f46d7d59a32dad2bd369e
|
|
| BLAKE2b-256 |
1768c1d6746b1305fd2f4161ebbb476d81daafa109295fc471d91a61c04e6431
|
File details
Details for the file lilliepy_import-1.4-py3-none-any.whl.
File metadata
- Download URL: lilliepy_import-1.4-py3-none-any.whl
- Upload date:
- Size: 3.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0c4a74c751961dced722e50af4d5824feb7a445749398df805f8e8de1cc9d0b
|
|
| MD5 |
2a5605e746f8c280369727c0a4196392
|
|
| BLAKE2b-256 |
edcac4bcdf18f858f93ff75ce62d8ce032c4d13a2b40362dcb0a4ce3e93cdf32
|