Skip to main content

extender: A simple plug-in/extension system on Python

Project description

extender
========
A simple plug-in/extension system on Python inspired by Sentry project.

[![Build Status](https://travis-ci.org/messense/extender.svg)](https://travis-ci.org/messense/extender)
[![Coverage Status](https://coveralls.io/repos/messense/extender/badge.png)](https://coveralls.io/r/messense/extender)

## Installation
In your terminal run

```bash
pip install https://github.com/messense/extender/archive/master.zip
```

Or simply install it from PyPi by executing

```bash
pip install extender
```

## How to write a plugin

A plugins layout generally looks like the following:

setup.py
pluginname/
pluginname/__init__.py
pluginname/plugin.py

The __init__.py file should contain no plugin logic, and at most, a `__version__ = ‘x.x.x’` line.
For example, if you want to pull the version using pkg_resources (which is what we recommend), your file might contain:

```python
try:
__version__ = __import__('pkg_resources') \
.get_distribution(__name__).version
except Exception:
__version__ = 'unknown'
```

Inside of plugin.py, you’ll declare your Plugin class:

```python
# -*- coding: utf-8 -*-
from extender import Plugin
import plugin1


class PluginName(Plugin):
title = 'Plugin Name'
slug = 'pluginname'
description = 'My awesome plugin!'
version = plugin1.__version__

author = 'Your Name'
author_url = 'https://github.com/yourname/pluginname'

def test_func(self, msg):
return msg
```

And you’ll register it via entry_points in your setup.py:

```python
# -*- coding: utf-8 -*-
from setuptools import setup

setup(
name='pluginname',
version='0.0.1',
author='Your name',
author_email='Your Email address',
url='https://github.com/yourname/pluginname',
packages=[
'pluginname'
],
description='plugin description',
install_requires=[
'extender',
],
include_package_data=True,
entry_points={
'extender.plugins': [
'pluginname = pluginname.plugin:PluginName',
]
},
)
```

You can change entry_points key `extender.plugins` to whatever you want.

That’s it! Users will be able to install your plugin via `pip install <package name>`.

## How to install plugins in your code

```python
from extender import PluginManager

plugins = PluginManager()
plugins.install('extender.plugins')
```

The `PluginManager.install` method takes an argument `entry_points` to install all plugins(just some python package)
registered to that entry_point automatically.

## How to invoke a method of plugins

```python
from extender import PluginManager

plugins = PluginManager()
plugins.install('extender.plugins')

""" invoke func_name(1, 2), return the result of the first called method """
result = plugins.first('func_name', 1, 2)
""" invoke func_name(1, msg='hello'), return a list of result like map function """
result_list = plugins.call('func_name', 1, msg='hello')
""" invoke apply func_name to modify value by every plugin then return it """
value = plugins.apply('func_name', 1)
```

## LICENSE

The MIT License (MIT)

Copyright (c) 2014 messense

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

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

extender-0.0.5.zip (29.3 kB view details)

Uploaded Source

extender-0.0.5.tar.gz (13.5 kB view details)

Uploaded Source

File details

Details for the file extender-0.0.5.zip.

File metadata

  • Download URL: extender-0.0.5.zip
  • Upload date:
  • Size: 29.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for extender-0.0.5.zip
Algorithm Hash digest
SHA256 398f8962222542adbc5de4abf2c43ae0df148f80f2836e21f0073c93c7f265ee
MD5 57b41842761e21000c81d56115f46146
BLAKE2b-256 db4d1bc72ef0b957928386c6fd6013bfba33b8b8391b783812d78faed7ab9ef4

See more details on using hashes here.

File details

Details for the file extender-0.0.5.tar.gz.

File metadata

  • Download URL: extender-0.0.5.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for extender-0.0.5.tar.gz
Algorithm Hash digest
SHA256 8c1b1bd0c6ed2fc2d68a357053826efd07e17e4638c11095fd20dcefcaa0be4c
MD5 aea66c9e7c88862e09aa2d76c58c176b
BLAKE2b-256 7291d3177c916aba216a2d8abdb0b2128ad29d175d98b816fec97d0b1400d385

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