Warouter is a simple routing wrapper around webapp2.
Project description
Warouter is a simple routing wrapper around webapp2.
Installing
$ pip install warouter
Usage
Warouter provides url inheritance for handlers and a convenient uri_for function which can be called with a handler, instead of a string name.
A WSGIApplication mixin is provided which can handle a list of url decorator handlers.
Example:
>>> import warouter >>> import webapp2 >>> >>> @warouter.url('/') ... class RootHandler(webapp2.RequestHandler): ... def get(self): ... self.response.write('root') ... >>> @warouter.url('/child/<child_param:([a-z]+)>') ... class ChildHandler(RootHandler): ... def get(self, child_param): ... self.response.write(child_param) ... def put(self, child_param): ... pass ... >>> @warouter.url('/grandchild/<grandchild_param:([a-z]+)>') ... class GrandChildHandler(ChildHandler): ... def get(self, child_param, grandchild_param): ... self.response.write('\n'.join([child_param, grandchild_param])) ... def post(self, child_param, grandchild_param): ... self.response.write(warouter.uri_for(ChildHandler, ... child_param=child_param)) ... >>> assert RootHandler.url == '/' >>> assert ChildHandler.url == '/child/<child_param:([a-z]+)>' >>> assert GrandChildHandler.url == ( ... '/child/<child_param:([a-z]+)>/grandchild/<grandchild_param:([a-z]+)>') >>> assert GrandChildHandler.put is None >>> >>> app = warouter.WSGIApplication([ ... RootHandler, ... ChildHandler, ... GrandChildHandler ... ]) >>> >>> if __name__ == '__main__': ... from paste import httpserver ... httpserver.serve(app, port='8080') ... >>>
The above example requires Paste, which can be installed using:
$ pip install paste
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.
See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for warouter-0.1.0-py27-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20b1f7aa1289e3f9cfaa8a1d48e34beeef539052e9f2eb41093c9c6e5d808078 |
|
MD5 | e43d8a71c3e520cf21d4ce50217c5de9 |
|
BLAKE2b-256 | d2ced21ede19f3b8f2c444e1898f50835e02e124d7f0af2c9138546b0d56ecb2 |