Metadata-Version: 2.0
Name: uwsgiconf
Version: 0.14.0
Summary: Configure uWSGI from your Python code
Home-page: https://github.com/idlesign/uwsgiconf
Author: Igor `idle sign` Starikov
Author-email: idlesign@yandex.ru
License: BSD 3-Clause License
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: BSD License
Provides-Extra: cli
Requires-Dist: click (>=2.0); extra == 'cli'

uwsgiconf
=========
https://github.com/idlesign/uwsgiconf

|release| |lic| |ci| |coverage|

.. |release| image:: https://img.shields.io/pypi/v/uwsgiconf.svg
    :target: https://pypi.python.org/pypi/uwsgiconf

.. |lic| image:: https://img.shields.io/pypi/l/uwsgiconf.svg
    :target: https://pypi.python.org/pypi/uwsgiconf

.. |ci| image:: https://img.shields.io/travis/idlesign/uwsgiconf/master.svg
    :target: https://travis-ci.org/idlesign/uwsgiconf

.. |coverage| image:: https://img.shields.io/coveralls/idlesign/uwsgiconf/master.svg
    :target: https://coveralls.io/r/idlesign/uwsgiconf


**Work in progress. Stay tuned.**


Description
-----------

*Configure uWSGI from your Python code*

If you think you know uWSGI you're probably wrong. It is always more than you think it is.
There are so many subsystems and options_ (800+) it is difficult to even try to wrap your mind around.

.. _options: http://uwsgi-docs.readthedocs.io/en/latest/Options.html

**uwsgiconf** allowing to define uWSGI configurations in Python tries to improve things the following ways:

* It structures options for various subsystems using classes and methods;
* It uses docstrings and sane naming to facilitate navigation;
* It ships some useful presets to reduce boilerplate code;
* It encourages configuration reuse;
* It comes with CLI to facilitate configuration;
* It features easy to use and documented **uwsgi stub** Python module;
* It offers **runtime** package, similar to **uwsgidecorators**, but with more abstractions.


*Consider using IDE with autocompletion and docstings support to be more productive with uwsgiconf.*

By that time you already know that **uwsgiconf** is just another configuration method. Why_?

.. _Why: http://uwsgi-docs.readthedocs.io/en/latest/FAQ.html#why-do-you-support-multiple-methods-of-configuration


Overview
--------

Static configuration
~~~~~~~~~~~~~~~~~~~~

Let's make ``uwsgicfg.py``. There we configure uWSGI using nice ``PythonSection`` preset to run our web app.

.. code-block:: python

    from uwsgiconf.config import configure_uwsgi
    from uwsgiconf.presets.nice import PythonSection


    def get_configurations():
        """This should return one or more Section or Configuration objects.
        In such a way you can configure more than one uWSGI instance in the same place.

        Here we'll define just one configuration section, which
        will instruct uWSGI to serve WSGI application (from wsgi.py module)
        on http://127.0.0.1:8000

        """
        section = PythonSection(
            wsgi_module='/home/idle/myapp/wsgi.py',

        ).networking.register_socket(
            PythonSection.networking.sockets.http('127.0.0.1:8000'))

        return section


    # Almost done. One more thing:
    configure_uwsgi(get_configurations)



1. Now if you want to generate ``myconf.ini`` file and use it for uWSGI manually you can do it with:

    .. code-block:: bash

        $ uwsgiconf compile > myconf.ini
        $ uwsgi myconf.ini

2. Or use ``uwsgiconf`` to automatically spawn uWSGI processes for configurations defined in your module:

    .. code-block:: bash

        $ uwsgiconf run


**Note:** ``uwsgiconf`` CLI requires ``click`` package available.


Runtime configuration
~~~~~~~~~~~~~~~~~~~~~

**uwsgiconf** comes with ``runtime`` package which is similar to **uwsgidecorators** but offers different abstractions.

These abstractions will also use a stub ``uwsgi`` module when the real one is not available.

A couple of examples:

.. code-block:: python

    from uwsgiconf.runtime.locking import lock
    from uwsgiconf.runtime.scheduling import register_timer_rb

    @register_timer_rb(10, repeat=2)
    def repeat_twice():
        """This function will be called twice with 10 seconds interval
        (by default in first available mule) using red-black tree based timer.

        """
        with lock():
            # Code under this context manager will be locked
            # using default (0) uWSGI lock.
            do_something()



Documentation
-------------

http://uwsgiconf.readthedocs.org/


