Go to file
jaska b8a9f6a809
Merge pull request #3 from chfw/dev
support dict as pluggable payload
2018-06-12 23:57:38 +01:00
.moban.d 🤝 sync with latest setupmobans 2017-10-23 21:39:07 +01:00
docs 🥚 🎡 release 0.0.3 2018-06-12 23:52:10 +01:00
examples update test 2017-05-29 22:43:40 +01:00
lml 🥚 🎡 release 0.0.3 2018-06-12 23:52:10 +01:00
tests 💚 make unit test pass 2018-06-12 23:27:22 +01:00
.gitignore initial commit 2017-04-04 08:53:11 +01:00
.moban.yml 📚 pump versions 2018-06-12 23:26:34 +01:00
.travis.yml update test 2017-05-29 22:43:40 +01:00
CHANGELOG.rst 🎨 update change log 2018-06-12 23:55:55 +01:00
LICENSE release 0.0.1 2017-05-30 23:17:10 +01:00
MANIFEST.in 🤝 sync with latest setupmobans 2017-10-23 21:39:07 +01:00
Makefile test uml usage 2017-05-20 13:38:04 +01:00
README.rst 📚 update project description 2018-06-12 23:28:41 +01:00
changelog.yml 🎨 update change log 2018-06-12 23:55:55 +01:00
lml.yml 🥚 🎡 release 0.0.3 2018-06-12 23:52:10 +01:00
requirements.txt update documentation 2017-04-06 22:54:21 +01:00
rnd_requirements.txt minor update 2017-04-18 22:15:23 +01:00
setup.cfg minor touch 2017-05-30 09:06:07 +01:00
setup.py 🥚 🎡 release 0.0.3 2018-06-12 23:52:10 +01:00
test.sh enable gitter for lml 2017-07-01 15:53:03 +01:00

README.rst

================================================================================
lml - Load me later. A lazy plugin management system.
================================================================================

.. image:: https://api.travis-ci.org/chfw/lml.svg
   :target: http://travis-ci.org/chfw/lml

.. image:: https://codecov.io/github/chfw/lml/coverage.png
   :target: https://codecov.io/github/chfw/lml


.. image:: https://readthedocs.org/projects/lml/badge/?version=latest
   :target: http://lml.readthedocs.org/en/latest/

**lml** seamlessly finds the lml based plugins from your current python
environment but loads your plugins on demand. It is designed to support
plugins that have external dependencies, especially bulky and/or
memory hungry ones. lml provides the plugin management system only and the
plugin interface is on your shoulder.

**lml** enabled applications helps your customers [#f1]_ in two ways:

#. Your customers could cherry-pick the plugins from pypi per python environment.
   They could remove a plugin using `pip uninstall` command.
#. Only the plugins used at runtime gets loaded into computer memory.

When you would use **lml** to refactor your existing code, it aims to flatten the
complexity and to shrink the size of your bulky python library by
distributing the similar functionalities across its plugins. However, you as
the developer need to do the code refactoring by yourself and lml would lend you a hand.

.. [#f1] the end developers who uses your library and packages achieve their
         objectives.

Installation
================================================================================


You can install lml via pip:

.. code-block:: bash

    $ pip install lml


or clone it and install it:

.. code-block:: bash

    $ git clone https://github.com/chfw/lml.git
    $ cd lml
    $ python setup.py install

License
================================================================================

New BSD