Metadata-Version: 2.4
Name: uwsgiconf
Version: 2.0.0
Summary: Configure uWSGI from your Python code.
Project-URL: Homepage, https://github.com/idlesign/uwsgiconf
Project-URL: Documentation, https://uwsgiconf.readthedocs.io/
Author-email: Igor Starikov <idlesign@yandex.ru>
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: configuration,uWSGI
Requires-Python: >=3.10
Provides-Extra: cli
Requires-Dist: click>=2.0.0; extra == 'cli'
Description-Content-Type: text/markdown

# uwsgiconf

https://github.com/idlesign/uwsgiconf

[![PyPI - Version](https://img.shields.io/pypi/v/uwsgiconf)](https://pypi.python.org/pypi/uwsgiconf)
[![License](https://img.shields.io/pypi/l/uwsgiconf)](https://pypi.python.org/pypi/uwsgiconf)
[![Coverage](https://img.shields.io/coverallsCoverage/github/idlesign/uwsgiconf)](https://coveralls.io/r/idlesign/uwsgiconf)
[![Docs](https://img.shields.io/readthedocs/uwsgiconf)](https://uwsgiconf.readthedocs.io/)

## 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+)](http://uwsgi-docs.readthedocs.io/en/latest/Options.html) it is difficult to even try to wrap your mind around.

``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;
* It features integration with Django Framework;
* It is able to generate configuration files for Systemd, Upstart.
* It can use ``pyuwsgi``.


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

By that time you already know that ``uwsgiconf`` is just another configuration method. [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.

``` 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. We use .bootstrap shortcut method
    to construct our configuration section object.

    """
    return PythonSection.bootstrap('http://127.0.0.1:8000', wsgi_module='/home/idle/myapp/wsgi.py')


# 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:

    ``` bash
    uwsgiconf compile > myconf.ini
    uwsgi myconf.ini
    ```

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

    ``` bash
    uwsgiconf run
    ```

!!! tip "Write code"
    ``uwsgiconf`` CLI requires ``click`` package available (can be installed with ``uwsgiconf``).


### Runtime configuration

``uwsgiconf`` comes with ``runtime`` package which is similar to **uwsgidecorators** but
offers different abstractions to provide useful shortcuts and defaults.

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

``` 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
    using red-black tree based timer.

    """
    with lock():
        # Code under this context manager will be locked.
        do_something()
```

Allows for runtime access to:

* Alarms
* Caches
* Locks
* Logging
* Monitoring
* Mules
* RPC
* Scheduling
* Signals
* Websockets
* and more


### Third parties support

#### Django

Run your Django-based project on uWSGI using manage command:

``` bash
./manage.py uwsgi_run
./manage.py uwsgi_reload --force
```

* Other commands are available.
* uWSGI summary and statistics are also available from Admin interface.
* Django cache based on uWSGI cache.
* and more


### System configs

Compile system service config (e.g ``systemd``) to run your uWSGI-powered project:

``` bash
uwsgiconf sysinit systemd
```

## Documentation

More information can be found at https://uwsgiconf.readthedocs.io/
