summaryrefslogtreecommitdiffstats
path: root/python/Routes/README
diff options
context:
space:
mode:
author Yth - Arnaud <yth@ythogtha.org>2019-10-23 23:50:32 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2019-10-23 23:50:32 +0700
commit1031bd382b1850a22df08a113a9149fc558db275 (patch)
treeaae599f924d51ac27c42783f77c30724be932725 /python/Routes/README
parentc370cbb4c9aa63b5e7af1a8ad21aa7eda6b2fe27 (diff)
downloadslackbuilds-1031bd382b1850a22df08a113a9149fc558db275.tar.gz
slackbuilds-1031bd382b1850a22df08a113a9149fc558db275.tar.xz
python/Routes: Added (Python Re-Implementation of Rails).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/Routes/README')
-rw-r--r--python/Routes/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/Routes/README b/python/Routes/README
new file mode 100644
index 0000000000..89c29985db
--- /dev/null
+++ b/python/Routes/README
@@ -0,0 +1,8 @@
+Routes is a Python re-implementation of the Rails routes system for mapping URLs
+to application actions, and conversely to generate URLs.
+Routes makes it easy to create pretty and concise URLs that are RESTful with little effort.
+
+Routes allows conditional matching based on domain, cookies, HTTP method,
+or a custom function.
+Sub-domain support is built in.
+Routes comes with an extensive unit test suite.