Skip to main content

Python package / plugin / extension manager.

Project description

Dismantle

Dismantle Python package / plugin / extension manager.

"""Simple plugin example"""
from dismantle import plugin


class Chat():
    @plugin.register('chat.message')
    def show(self, message):
        print(message)


@plugin.plugin('chat.message', order=-1)
def make_uppercase(message):
    return message.upper()
"""Full example using all aspects."""
from dismantle.extension import Extensions, IExtension
from dismantle.index import JsonFileIndexHandler
from dismantle.package import LocalPackageHandler


class ColorExtension(IExtension):
    _category = 'color'

    def color(self) -> None:
        ...


class GreenColorExtension(ColorExtension):
    _name = 'green'

    def color(self) -> None:
        print(f'color is {self._name}')


packages = {}
index = JsonFileIndexHandler('index.json')
for pkg_meta in index:
    meta = index[pkg_meta]
    package = LocalPackageHandler(meta['name'], 'foo/path')
    package._meta = {**package._meta, **meta}
    package.install()
    packages[package.name] = package
extensions = Extensions([ColorExtension], packages, 'ext_')
assert extensions.types == ['color']
assert list(extensions.category('color').keys()) == [
    '@scope-one/package-one.extension.green.GreenColorExtension',
    '@scope-one/package-two.extension.red.RedColorExtension',
    '@scope-one/package-three.extension.blue.BlueColorExtension',
]
assert list(extensions.extensions.keys()) == ['color']
assert list(extensions.imports.keys()) == [
    '@scope-one/package-one.extension.green',
    '@scope-one/package-two.extension.red',
    '@scope-one/package-three.extension.blue'
]

Dismantle allows you to provide the ability to create a plugin/extension/module for an application. It does this by checking a package index and using that index to manage package versions. Packages then contain plugins (using decorators) and extensions (using a custom module loader) to add the additional functionality to the application.

Installing Dismantle and Supported Versions

Dismantle is available on PyPI:

$ python -m pip install dismantle

Dismantle officially supports Python 3.7+.

Supported Features & Best–Practices

Dismantle is ready for the demands of providing flexibility within applications allowing developers to build rich ecosystems around core applications.

Index Management

  • easy to create custom index handlers providing additional ways to define package indexes
  • local index file support using json
  • url based index file support using json
  • etag based caching for url based index

Packaging

  • easy to create custom package handlers providing additional ways to define package sources
  • easy to create custom package formats compression types and structures
  • support for zip, tar.gz, tgz, and local directories as package formats
  • support for local and url based (http/https) package handlers
  • hash validation for packages with the ability to verify package integrity

Extensions

  • Categorized extension groups to filter extension types (eg. loggers, parsers, ...)
  • Support for init or .py based module loading.
  • Extension activation and deactivation management.
  • Module name collision avoidance
  • Hierarchical module naming

Plugins

  • Decorator based plugins with pre and post value modification
  • Multiple plugins per function with ability to set execution order
  • Activation management

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

dismantle-1.0.0.tar.gz (26.0 kB view details)

Uploaded Source

Built Distribution

dismantle-1.0.0-py3-none-any.whl (16.6 kB view details)

Uploaded Python 3

File details

Details for the file dismantle-1.0.0.tar.gz.

File metadata

  • Download URL: dismantle-1.0.0.tar.gz
  • Upload date:
  • Size: 26.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for dismantle-1.0.0.tar.gz
Algorithm Hash digest
SHA256 5e36a6d11b8d45ca17d482a5c40a31eb091044c7fe25d0e7c1ef64102eb5785a
MD5 f7f68426815e20a62d9bf641fb9eac34
BLAKE2b-256 86273d2cd10fa97827d354b8f3de5d5c973d4c58baff7a678324b19c87a48f69

See more details on using hashes here.

File details

Details for the file dismantle-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: dismantle-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for dismantle-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e9803a4aafea8f6b3e0c1cb1ea7d09e0602a277fa6b51a78d193674573e7e5fe
MD5 1dbf22005f206f6991db6a7f131920a6
BLAKE2b-256 71bdbe7c215b98609ac2773199eba01801e641762a45bfc0b2985cd489a79220

See more details on using hashes here.

Supported by

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