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

Uploaded Python 3

File details

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

File metadata

  • Download URL: lilliepy_import-1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 aa4c5941765714ba0ef3f611f61c3252a9a3007f92257e18ce468ce2e6379499
MD5 6ebe2b9b5db1786870493e989188823a
BLAKE2b-256 9e34b27b5235338e87ddd5e51d36ea06593adea871bfa3347676a1148a884a6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lilliepy_import-1.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 43fff568c9eed658f8d3cc6b97d2fb14ef87743906af352935943cdbd33a1eaa
MD5 54df8c6e7218bcb8562235dcce90ed04
BLAKE2b-256 fadfba86e67d278deacfd3f048ac4f40c16454c5ba6adee5686dfb8538d467b6

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