Skip to main content

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 ValueError if the component folder is not set before calling _import.
  • Raises a FileNotFoundError if 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

lilliepy_import-1.1.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lilliepy_import-1.1-py3-none-any.whl (3.2 kB view details)

Uploaded Python 3

File details

Details for the file lilliepy_import-1.1.tar.gz.

File metadata

  • Download URL: lilliepy_import-1.1.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for lilliepy_import-1.1.tar.gz
Algorithm Hash digest
SHA256 cdefd9edf170d5e9bf903eb335204c2cbd7604439347b24ba288b1b14ddbdbf0
MD5 8823a976536ec2e3ff3e7303cfabc293
BLAKE2b-256 103aed359924d0158c347650defa5aecac3224e03bc77a3e00e54b1110ba7569

See more details on using hashes here.

File details

Details for the file lilliepy_import-1.1-py3-none-any.whl.

File metadata

  • Download URL: lilliepy_import-1.1-py3-none-any.whl
  • Upload date:
  • Size: 3.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for lilliepy_import-1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3cc9a1fab853458113e332b10a64526538644a83e98ac5717f29de72550eb63f
MD5 471db67223253c7dbf84e84dba0512c4
BLAKE2b-256 114ef5f71d99a3ebb248831de9eb6a947a9d8c382f2061d72571e840f0ede9bd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page