Skip to main content

Simple wrapper around gevent's wsgi server.Adds simple regex routing, error handling, and json/jsonp handling.

Project description

gserver 0.2.0

Simple wrapper around gevent that provides a basic routing engine and JSON/JSONP handling.

Here’s a simple usage example:

from gevent.monkey import patch_all; patch_all()
from gevent import queue

from gserver.routes import Routes
from gserver.request import parse_vals
from gserver.wsgi import WSGIServer

routes = Routes()
route = routes.route
route_json = routes.route_json

@route("^/example/$")
def example(req):
    return "hello"

@route("^/poll/$")
def poll(request):
    yield ' ' * 1000
    yield "hello"
    sleep(5)
    yield "goodbye" # connection is closed at this point

@route("^/queue/$")
def q(request):
    def process(b):
        b.put("<div>1</div>")
        sleep(1)
        b.put("<div>2</div>")
        sleep(1)
        b.put("<div>3</div>")

    body = queue.Queue()
    body.put(' ' * 1000)
    body.put("<!doctype html><html><head><title>hola</title><head><body>\n")
    gevent.spawn(process, body)
    return body

@route_json("^/example/(?P<name>\w+)/$", method="GET,POST")
def example_name(request, name=None):
    data = request.query_data
    if request.method == "POST":
        data = request.form_data
    query_age, query_height = parse_vals(data, "age", "height")

    return { "name": name,
             "age": query_age,
             "height": query_height }

if __name__ == "__main__":
    server = WSGIServer(('', 9191), routes, log=None)
    server.serve_forever()

get gserver

Install gevent, and it’s dependencies greenlet and libevent:

sudo easy_install gserver

Download the latest release from Python Package Index or clone the repository

More documentation is on it’s way (check the site for updates)

Provide any feedback and issues on the bug tracker, that should be coming soon.

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

gserver-0.2.0.tar.gz (9.0 kB view details)

Uploaded Source

File details

Details for the file gserver-0.2.0.tar.gz.

File metadata

  • Download URL: gserver-0.2.0.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for gserver-0.2.0.tar.gz
Algorithm Hash digest
SHA256 03c81a367e341b024b10cf413960bae4160ef4888e082b78f5528b51da5d0210
MD5 3705b2500169cbb9fd5a9f0e3d365204
BLAKE2b-256 0ac50d8cbdbfed5b154829a683e39003f49c7e5f3922014db8b6b42c74f92c0a

See more details on using hashes here.

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