https://github.com/akornatskyy/wheezy.routing
A lightweight path routing library
https://github.com/akornatskyy/wheezy.routing
python routing wheezy
Last synced: 20 days ago
JSON representation
A lightweight path routing library
- Host: GitHub
- URL: https://github.com/akornatskyy/wheezy.routing
- Owner: akornatskyy
- License: mit
- Created: 2020-06-25T07:50:20.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-22T10:44:00.000Z (about 2 months ago)
- Last Synced: 2025-03-30T10:33:43.683Z (about 2 months ago)
- Topics: python, routing, wheezy
- Language: Python
- Homepage: https://wheezyrouting.readthedocs.io/en/latest/
- Size: 459 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wheezy.routing
[](https://travis-ci.org/akornatskyy/wheezy.routing)
[](https://coveralls.io/github/akornatskyy/wheezy.routing?branch=master)
[](https://wheezyrouting.readthedocs.io/en/latest/?badge=latest)
[](https://badge.fury.io/py/wheezy.routing)[wheezy.routing](https://pypi.org/project/wheezy.routing/) is a
[python](https://www.python.org) package written in pure Python code. It
is a simple mapping between URL patterns (as plain simple strings, curly
expressions or regular expressions) to a handler that can be anything
you like (there is no limitation or prescription what handler is or
could be).The mapping can include other mappings and constructed dynamically.
It is optimized for performance, well tested and documented.
Resources:
- [source code](https://github.com/akornatskyy/wheezy.routing),
[examples](https://github.com/akornatskyy/wheezy.routing/tree/master/demos)
and [issues](https://github.com/akornatskyy/wheezy.routing/issues)
tracker are available on
[github](https://github.com/akornatskyy/wheezy.routing)
- [documentation](https://wheezyrouting.readthedocs.io/en/latest/)## Install
[wheezy.routing](https://pypi.org/project/wheezy.routing) requires
[python](https://www.python.org) version 3.9+. It is independent of operating
system. You can install it from
[pypi](https://pypi.org/project/wheezy.routing/):```sh
pip install -U wheezy.routing
```If you run into any issue or have comments, go ahead and add on
[github](https://github.com/akornatskyy/wheezy.routing).