Skip to main content

automatic acquisition of modules from packages

Project description

acq builds.sr.ht status

What it is?!

This library provides a simple and convenient way to automatically search packages for modules and import them without needing project files to manually import them, which allows for automatic configuration and other useful mechanics within projects.

Installation

You can install this module via pip or your preferred dependency management tool(s):

pip install acq

Usage

In standard Python applications, the tool can be used in the following ways:

from acq import discover

# Import modules 'a' and 'b' from packages "example1" and "example2"
discover('a', 'b', package_names=['example1', 'example2'])

Furthermore, you can extend this functionality to provide you all classes or instances matching a specific class within discovered modules:

from csv import DictReader
from acq import discover

# Import modules 'readers' from packages "example1" and "example2"
# and get any instances, subclasses of, or references to
# DictReader from within them
results = discover(
    'readers',
    package_names=['example1', 'example2']),
    types=(DictReader,),
)

print(list(results.DictReader))

In Django applications, you can automatically import from INSTALLED_APPS via:

from acq.django import discover

# Import views.py for all packages in the INSTALLED_APPS setting
discover('views')

# Import views.py for all packages in an AUTOSEARCH_MODULES setting
discover('views', packages_setting_name='AUTOSEARCH_MODULES')

Contributing

Thank you for considering use of this project, and please feel free to provide any suggestions in pull requests if you have any!

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

acq-0.2.3.tar.gz (6.3 kB view details)

Uploaded Source

File details

Details for the file acq-0.2.3.tar.gz.

File metadata

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

File hashes

Hashes for acq-0.2.3.tar.gz
Algorithm Hash digest
SHA256 9109d5b035711f3266a10b91b63d9b801f4c802b5b4a19be13adba6e2171b8a3
MD5 3e106ad1039bdc67ac2ce53062eda2f5
BLAKE2b-256 cff09c78ac0fa96f5617bb03dd55769cbb9d6feccdf318b9a11ff4624259dfcb

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