Skip to main content

A simple runner for Python wsgi application. Like Gunicorn but can run on Windows. It's to simple, so do not use at production environment.

Project description

runwsgi

A simple runner for Python wsgi application. Like Gunicorn but can run on Windows. It’s to simple, so do not use at production environment.

Install

pip install runwsgi

Use

run command:

runwsgi -b 128.0.0.1:8000 -d /home/robin/demo/ -p "robin" demo:app

on Windows use:

runwsgi.bat -b 128.0.0.1:8000 -d C:\Users\Administrator\Desktop\demo\ -p "robin" demo:app

if can’t find runwsgi command, try:

python -m runwsgi -b 128.0.0.1:8000 -d /home/robin/demo/ -p "robin" demo:app

open broswer with url http://127.0.0.1:8000

Other tips

1. -b

set bind address

2. -d

set you wsgi work dir

3. -p

set environment variable of WSGI_PARAMS, and then you can use "os.environ.get('WSGI_PARAMS')" to get the parameter.

4. wsgi application

model:application

CHANGES

0.0.1

  • init version.

0.0.2

  • first useable version.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

runwsgi-0.0.2.tar.gz (3.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page