Configure uWSGI from your Python code.
Project description
uwsgiconf
https://github.com/idlesign/uwsgiconf
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.
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?
Overview
Static configuration
Let's make uwsgicfg.py. There we configure uWSGI using nice PythonSection preset to run our web app.
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)
-
Now if you want to generate
myconf.inifile and use it for uWSGI manually you can do it with:uwsgiconf compile > myconf.ini uwsgi myconf.ini
-
Or use
uwsgiconfto automatically spawn uWSGI processes for configurations defined in your module: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.
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:
./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:
uwsgiconf sysinit systemd
Documentation
More information can be found at https://uwsgiconf.readthedocs.io/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uwsgiconf-2.3.0.tar.gz.
File metadata
- Download URL: uwsgiconf-2.3.0.tar.gz
- Upload date:
- Size: 131.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dc23c15636bcb7d484089d9b001817497ce09371faab1c95b165a00e1413dd3
|
|
| MD5 |
e82af59852007b22fd9ae50bd4594df3
|
|
| BLAKE2b-256 |
c35ec1af1899d37060d867c6edf8f79250564ece7f794afc619f07d0b0d97ac9
|
File details
Details for the file uwsgiconf-2.3.0-py3-none-any.whl.
File metadata
- Download URL: uwsgiconf-2.3.0-py3-none-any.whl
- Upload date:
- Size: 180.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
421305e7d6210683ea7e88e1cd8801ee618650baea34d8403d73c29243855592
|
|
| MD5 |
285a2e8639aeb65c960a9702c4305668
|
|
| BLAKE2b-256 |
c6df724047658ecffe34da089fded676f31d8c8f466eee012e39867ce5eee9f4
|