On Thu, Dec 18, 2008 at 12:38 AM, Randy Syring <[email protected]> wrote: > > Khaoz, > > I have actually been building a framework like this for the exact same > reason. Its built on Werkzeug: > > http://pypi.python.org/pypi/pysapp > > My application sets up the routes in the modules settings.py file > (think Django 'app') and then the framework takes care of the rest of > the templating, etc. I just pushed this project out to pypi two days > ago, so its pretty new. But I have been working on it for about six > months and have recently pushed out a production website built on it. > If you are interested in taking it for a test drive, follow the > directions on pypi to create your own application. If nothing else, > the code should give you some good ideas. > > Also, there are some really good examples of how to create views (same > concept as Django) in the pysmvt/tests/test_views.py file. You can > get that file through SVN (checkout the development version link on > pypi). > > Feel free to post back with questions. Since there aren't really any > docs at this point, I am sure you will have a lot. >
very interesting. I'm also working on uliweb (http://code.google.com/p/uliweb) project, it also bases on werkezug, but I've not released it yet, because something have not finished yet. I also borrow app structure from django project, and in uliweb, each app can has its own setting file and static folder. Each view file can have many view functions, and you can use a decorator expose(just like a werkzeug example shows) "expose" to define a url for this function. There are already some simple tutorial already: http://uliwebproject.appspot.com, and this site is built on uliweb, but I should say something in documents may not match with the svn code, because I'm still working on it. -- I like python! UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/ UliWeb <<simple web framework>>: http://uliwebproject.appspot.com My Blog: (new)http://http://hi.baidu.com/limodou (old)http://www.donews.net/limodou --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pocoo-libs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pocoo-libs?hl=en -~----------~----~----~----~------~----~------~--~---
