A microframework
Project description
Rouver
A microframework for Python 3, based on werkzeug.
Routing
>>> from rouver.router import Router
>>> from rouver.response import respond_with_html, respond_with_json
>>> def get_index(environ, start_response):
... return respond_with_html(start_response, "<div>Foo</div>")
>>> def get_count(environ, start_response):
... return respond_with_json(start_response, {"count": 42})
>>> router = Router()
>>> router.add_routes([
... ("", "GET", get_index),
... ("count", "GET", get_count),
... ])
Routes with placeholders:
>>> def get_addition(environ, start_response):
... num1, num2 = path
... return response_with_json(start_response, {"result": num1 + num2})
>>> def numeric_arg(request, path, value):
... return int(value)
>>> router.add_template_handler("numeric", numeric_arg)
>>> router.add_routes([
... ("add/{numeric}/{numeric}", "GET", get_addition),
... ])
Routes with wildcards:
>>> def get_wildcard(environ, start_response):
... # environ["rouver.wildcard_path"] contains the remaining path
... return respond(start_response)
>>> router.add_routes([
... ("wild/*", "GET", get_wildcard),
... ])
Sub-routers:
>>> def get_sub(environ, start_response):
... return respond(start_response)
>>> sub_router = Router()
>>> sub_router.add_routes([
... ("sub", "GET", get_sub),
... ])
>>> router.add_sub_router("parent", sub_router)
Argument Handling
>>> from rouver.args import Multiplicity, parse_args
>>> from rouver.response import respond_with_json
>>> def get_count_with_args(request, path, start_response):
... args = parse_args(request.environ, [
... ("count", int, Multiplicity.REQUIRED),
... ])
... return respond_with_json({"count": args["count"]})
WSGI Testing
>>> from rouver.test import create_request, test_wsgi_app
>>> request = create_request("GET", "/my/path")
>>> response = test_wsgi_app(app, request)
>>> response.assert_status(HTTPStatus.OK)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rouver-2.6.2.tar.gz
(33.2 kB
view details)
Built Distribution
rouver-2.6.2-py3-none-any.whl
(40.1 kB
view details)
File details
Details for the file rouver-2.6.2.tar.gz
.
File metadata
- Download URL: rouver-2.6.2.tar.gz
- Upload date:
- Size: 33.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.2 Linux/6.2.0-20-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9e935570f156d11b7b6c19261da75690b95c9139639042412de2a5db59a8ed4 |
|
MD5 | 6fa988245ee8ad525aa72732e112fcd2 |
|
BLAKE2b-256 | 6f921b3a2595b0fe26a8997f5052178c1e2c3ba04e3340e7dd58b7ba6bb08d52 |
File details
Details for the file rouver-2.6.2-py3-none-any.whl
.
File metadata
- Download URL: rouver-2.6.2-py3-none-any.whl
- Upload date:
- Size: 40.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.2 Linux/6.2.0-20-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 188a5dcf038d49549d99c40e58347c4298143ecb86d311f9c82d72ca88c93bef |
|
MD5 | e7ec96521da1bf4eb2a08999b4ca999d |
|
BLAKE2b-256 | 250fa1696d75585f5b5d12679d5ffda7adf598fe4e0182540a521ca35cd1414a |