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.4.3.tar.gz
(32.4 kB
view details)
Built Distribution
rouver-2.4.3-py3-none-any.whl
(39.3 kB
view details)
File details
Details for the file rouver-2.4.3.tar.gz
.
File metadata
- Download URL: rouver-2.4.3.tar.gz
- Upload date:
- Size: 32.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.0.1 pkginfo/1.4.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9a86902d7aaf6d1ec012b58632e29274f74285a6f9de5ee674918802c0d7f05 |
|
MD5 | 6ba070a488af9f87363b7daf8ea9e2d4 |
|
BLAKE2b-256 | 43e395071193a2fece4f4588bc008c23f732c2739309ae461eefbfabb133febb |
File details
Details for the file rouver-2.4.3-py3-none-any.whl
.
File metadata
- Download URL: rouver-2.4.3-py3-none-any.whl
- Upload date:
- Size: 39.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.0.1 pkginfo/1.4.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8747407c8c384ed49e4d08a64ce0b7020bdc1075a19ba7e09588b01921d89593 |
|
MD5 | 146df2da10b4f9c90a1859def1869454 |
|
BLAKE2b-256 | 9846cbe1bb766f741f45b9392e072d87ce09944ff93cb70145d229e55d6933f1 |