bbangert / routes (http://routes.groovie.org/)

Routes is a Python URL recognition and generation system similar to the Rails routing system. Routes makes it easy to create pretty and concise URL's that are RESTful with little effort.

Clone this repository (size: 853.0 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/bbangert/routes/
View at rev
routes /
filename size last modified message
docs  
routes  
scripts  
tests  
.hgignore 147 B 3 weeks ago Major re-org of the docs
.hgtags 1.7 KB 8 days ago Added tag v1.12.1 for changeset 5cf11614bf01
CHANGELOG 19.0 KB 8 days ago Tagging 1.12.1
INSTALL 319 B 4 years ago [svn] Adding install/readme files.
LICENSE 1.4 KB 22 months ago Updating license copyright
MANIFEST.in 105 B 18 months ago Adding global exclude
README 855 B 3 months ago initial commit: nestable submappers, collection(),…
TODO 6.9 KB 6 months ago Update TODO.
setup.cfg 224 B 4 weeks ago Increase unit tests and add more explicit use of the mapper…
setup.py 1.1 KB 8 days ago Tagging 1.12.1

README

Routes 1.11(ish) with:
* Routes prettyprinter
* A working, nestable submapper
* collection(), a more flexible and powerful alternative to resource()

See http://positiveincline.com/?p=550 and http://positiveincline.com/?p=561

--

Routes is a Python re-implementation of the Rails routes system for mapping
URL's to Controllers/Actions and generating URL's. Routes makes it easy to
create pretty and concise URL's that are RESTful with little effort.

Speedy and dynamic URL generation means you get a URL with minimal cruft
(no big dangling query args). Shortcut features like Named Routes cut down
on repetitive typing.

View the INSTALL for installation instructions. Routes will typically be
running integrated into an existing framework.

For developers wishing to integrate Routes with their web
application/framework, consult docs/integration.txt.