Skip to main content

Django like WSGI router

Project description

Django-like WSGI router.

from router.core import router

# Define a controller
def hello(request, name, template='Hello %s'):
return template % name

# Register routes
router.add(r'^/hello/(?P<name>[\w_-]+)/$', hello)
router.add(r'^/hello/my/name/is/(?P<name>[\w_-]+)/$', hello, template='Hello my name is %s', name='hello_my_name_is')

# Serve WSGI application
from wsgiref.simple_server import make_server

server = make_server('localhost', 8000, router)
server.serve_forever()

# Reverse controller URL
router.reverse(hello, name='Vincent') # /hello/Vincent/
router.reverse('hello_my_name_is', name='Vincent') # /hello/my/name/is/Vincent/

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

platypus-router-0.1.2.tar.gz (4.1 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