Skip to main content

This helper provides simplified loading of modules (files) from package (dir)

Project description

import autoload

Lines of code Downloads Statistic GitHub

What is autoloading?

Autoloading means the automatic loading of the files required for your module. That is including the files required for your application without explicitly including each file with from modulename import filename construct.

1. problem

  • let directory struct be like
main.py
project_dir/
|-- example.py
|-- README.md
|-- setup.py
|-- test_package
|   |-- __init__.py
|   |-- package_file_0.py
|   |-- package_file_1.py
|   |-- package_file_2.py
  • and code
"""example.py"""
from test_package import package_file_0
from test_package import package_file_1
...
from test_package import package_file_n

but we are too lazy to type a lot letters

2. solution

  • install
pip install -UIv "import-autoload>=0.2.4a"
  • add two lines to __init__.py
"""__init__.py"""
from autoload import autoload

__all__ = autoload()
"""example.py"""
from test_package import *
  • or variant
"""main.py"""
from autoload import autoload

autoload("project_dir.test_package", pattern="package_file_[0123]")

parameters

  1. module_name path to module dir with dot separator, like in from module_name import, default current module
  2. pattern like in fnmatch(filename, pattern), default *.py

attention

  • it seems to require python version >= 3.4. if you were able to test an early version, please contact me

how it work

  • checks path to module and call importlib.import_module()

License

  • It's opensource and free software, see the LICENSE for more details

similar projects

TODO

  • handle system path separator for module_name

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

import_autoload-0.3.1-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file import_autoload-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for import_autoload-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 34bcf7964612430c4b2403ea2b4f4ed5033cac3d19edf64c021d6c3adc60ab83
MD5 83a0cfcc57a658d7cf88c51e2069e14f
BLAKE2b-256 2701f411ceee8a0f30601faa11b2228784171f813077e10173ffb7fc34cb0c6d

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