Metadata-Version: 1.1
Name: multipla
Version: 0.2.0
Summary: Plugin handling system

Home-page: https://github.com/monkeython/multipla
Author: Luca De Vitis <luca at
Author-email: monkeython.com
License: BSD
Description: 
        .. image:: https://travis-ci.org/monkeython/multipla.svg?branch=v0.2.0
            :target: https://travis-ci.org/monkeython/multipla
            :alt: Build status
        
        .. image:: https://coveralls.io/repos/monkeython/multipla/badge.png?branch=v0.2.0
            :target: https://coveralls.io/r/monkeython/multipla?branch=master
            :alt: Test coverage
        
        .. image:: https://readthedocs.org/projects/multipla/badge/?version=v0.2.0&style=default
            :target: http://multipla.readthedocs.org/en/latest/
            :alt: Read the Docs
        
        .. image:: https://pypip.in/download/multipla/badge.svg?period=month
            :target: https://pypi.python.org/pypi/multipla/
            :alt: Downloads
        
        .. image:: https://pypip.in/version/multipla/badge.svg?text=latest
            :target: https://pypi.python.org/pypi/multipla/
            :alt: Latest Version
        
        .. image:: https://pypip.in/status/multipla/badge.svg
            :target: https://pypi.python.org/pypi/multipla/
            :alt: Development Status
        
        .. image:: https://pypip.in/py_versions/multipla/badge.svg
            :target: https://pypi.python.org/pypi/multipla/
            :alt: Supported Python versions
        
        .. image:: https://pypip.in/implementation/multipla/badge.svg
            :target: https://pypi.python.org/pypi/multipla/
            :alt: Supported Python implementations
        
        .. image:: https://pypip.in/egg/multipla/badge.svg
            :target: https://pypi.python.org/pypi/multipla/
            :alt: Egg Status
        
        .. image:: https://pypip.in/wheel/multipla/badge.svg
            :target: https://pypi.python.org/pypi/multipla/
            :alt: Wheel Status
        
        .. .. image:: https://pypip.in/license/multipla/badge.svg
        ..     :target: https://pypi.python.org/pypi/multipla/
        ..     :alt: License
        .. 
        
        (Spelled like multiplug) The purpose of this module is to provide a dead simple
        plugin handler module. I wanted something:
        
        #. Capable of handling multiple plugins (and that's pretty obvious)
        #. Capable of handling multiple implementation of the same plugin
        #. Capable of handling multiple ``pkg_resources.WorkingSet``-s... by itself
        #. Easy to initialize in your pluggable application/framework.
        
        I wanted somthing like:
        
        .. code-block:: python
        
           content_types = multipla.power_up('scriba.content_types')
        
           def to_json(object):
               content_type = content_types.get('application/json')
               return content_type.format(ojbect)
        
           def to_user_supplied_type(object, content_type):
               return content_types.get(content_type).format(object)
        
        or:
        
        .. code-block:: python
        
           from loremipsum import generator
           import multipla
        
           samples = multipla.power_up('loremipsum.samples')
           vaporware = generator.Generator(samples.get('vaporware'))
        
        You can read more on `Pythonhosted`_ or `Read the Docs`_. Since this package
        has en extensive docstring documentation as well as code comments, you can
        read more browsing the source code or in the python interactive shell.
        
        .. _`Pythonhosted`: http://pythonhosted.org/multipla
        .. _`Read the Docs`: http://multipla.readthedocs.org
        
Keywords: multipla,multi-plugs,multi-socket,plugs,plugin
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
