欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Web.py
来自开放百科 - 灰狐
(版本间的差异)
第1行: | 第1行: | ||
− | "Django lets you write web apps in Django. TurboGears lets you write web apps in TurboGears. Web.py lets you write web apps in Python." - Adam Atlas | + | "[[Django]] lets you write web apps in Django. [[TurboGears]] lets you write web apps in TurboGears. Web.py lets you write web apps in [[Python]]." - Adam Atlas |
http://webpy.org/ | http://webpy.org/ |
2007年3月5日 (一) 11:10的版本
"Django lets you write web apps in Django. TurboGears lets you write web apps in TurboGears. Web.py lets you write web apps in Python." - Adam Atlas
Install
wget http://webpy.org/web.py-0.2.tar.gz python setup.py install // install to /usr/local/lib/python2.4/site-packages/web touch code.py import web urls = ( '/', 'index' ) class index: def GET(self): print "hello, webpy" if __name__ == "__main__": web.run(urls, globals()) python code.py http://localhost:8080/ :)
Template
mkdir templates cd templates touch index.html
User
分享您的观点