Sourcecode moved to GITHUB: http://github.com/holtwick/pyxer
IntroductionYet another Python Framework! The goal of this project to make web development as easy as possible to enable the developer to start quickly with a new project. This project should be distributable via PasteDeploy for normal servers and for Google App Engine (GAE), without the need of using different technologies and approaches.
ExampleMinimal init.py:
from pyxer.base import *
@controller
def index():
return "Hello World"Templating LanguageSince Genshi does not work on GAE a new Templating Language comes with Pyxer that is very similar to the syntax of Genshi and Kid. Here is a simple example of a controller using a template:
from pyxer.base import *
@controller
def index():
c.somelist=[1,2,3]And the corresponding template named "index.html":
Value: $value
Online DemoThe most recent examples can be accessed here: http://pyxer.appspot.com
30 Day Summary Apr 11 2013 — May 11 2013
|
12 Month Summary May 11 2012 — May 11 2013
|
Copyright
©
2013
Black Duck Software, Inc.
and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a
Creative Commons Attribution 3.0 Unported License
. Ohloh
®
and the Ohloh logo are trademarks of
Black Duck Software, Inc.
in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.