An open API service indexing awesome lists of open source software.

https://github.com/dhellmann/bartender

Automatic WSGI app loader and server for API development
https://github.com/dhellmann/bartender

Last synced: 11 months ago
JSON representation

Automatic WSGI app loader and server for API development

Awesome Lists containing this project

README

          

====================================
Bartender -- WSGI App Auto-loader
====================================

Bartender is a WSGI_ application for managing other WSGI applications
at runtime. It uses stevedore_ to load the applications and werkzeug_
to dispatch incoming requests based on the URL path.

.. _WSGI: http://wsgi.org
.. _stevedore: http://pypi.python.org/pypi/stevedore
.. _werkzeug: http://werkzeug.pocoo.org/

Deploying with Bartender
========================

Bartender is designed to make deploying servers composed of isolated
components easier by removing manual configuration steps. The
front-end server can be configured to load a Bartender instance once,
and the Bartender will load the other applications and configure the
dispatcher automatically.