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.0.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.0-py3-none-any.whl (3.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lilliepy_import-1.0.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.0.tar.gz
Algorithm Hash digest
SHA256 06e7170183244387497021a555543c7444a93655b1bda48e810577abb0a306ca
MD5 3438121db00767c7212ce8624327f435
BLAKE2b-256 01814853a19dfbdf88b520fd6e8429a54ca4a67d4ea3ad957ff488e37552d1b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lilliepy_import-1.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1877e33df77c7bc32b1c2e8519a0c9913cfdea901a7acdee1a04ad360d6805c4
MD5 3d51a41ba6c913a257e21df81802de95
BLAKE2b-256 eb62571fc07506b909d49d03724c23b9b941054fa89aacf65bb163bb62da91d3

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