Skip to main content

Yet another WSGI server implementation.

Project description

Yet another WSGI server implementation.

Usage

Usage is like this:

$ kwsgi hello.py app --reload

Options are below:

$ kwsgi --help
Usage: kwsgi [OPTIONS] FILEPATH WSGIAPP

  Example: kwsgi hello.py app -p 5000 --reload

Options:
  -h, --host TEXT             The interface to bind to.
  -p, --port INTEGER          The port to bind to.
  --reload / --no-reload      Enable live reloading
  --interval INTEGER          Interval time to check file changed for
                              reloading
  --validate / --no-validate  Validating your WSGI application complying with
                              PEP3333 compliance.
  --help                      Show this message and exit.

And you can integrate with kwsgi from python script:

from kwsgi import WSGIServer


def application(env, start_response):
    start_response('200 OK', [('Content-type', 'text/plain; charset=utf-8')])
    return [b'Hello World']


if __name__ == '__main__':
    server = WSGIServer(application)
    server.run_forever()

Development Roadmap

These are the current planned major milestones:

  1. [DONE] Add minimum implementation (at least this can run django application).

  2. Optimize some important performance bottlenecks using C-extensions, mypyc or Rust.

  3. Add green threads implementation.

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

kwsgi-0.0.1.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

kwsgi-0.0.1-py3-none-any.whl (6.2 kB view hashes)

Uploaded Python 3

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