Skip to main content

simple tornado menus

Project description

tornado-menumaker
=================

Inspired by tornroutes a simple menu api

Copyright license
=================

tornado-menumaker is licensed under the GNU Affero General Public License, for more information see the LICENSE.txt.

Usage
=====

Define Handler using decorator:

import tornado.web
from tornado_menumaker import page, index, subpage, routes

@page('/news', 'News', icon='icon-news')
class NewsHandler(tornado.web.RequestHandler):

@index
def get(self):
pass

@subpage('/show/(\d+)')
def show(self, id):
pass

@subpage('/new', 'Neue News')
def new(self):
pass

@new.post
def new(self):
pass

@subpage('/archive', 'Archiv')
def archive(self):
pass

a = tornado.web.Application(routes())

To get the menu structure you can then use:

from tornado_menumaker import items

for level, url, caption, sub_routes, kwargs in items():
...
for level, url, caption, subsub_routes, kwargs in sub_routes:
...

This will yield for the above example:
0, '/news', 'News', <generator>, {icon: 'icon_news'}
1, '/news/new', 'Neue News', <generator>, {}
1, '/news/archive', 'Archiv', <generator>, {}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Tornado-Menumaker-0.1.2.tar.gz (3.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page