欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Simpleweb
来自开放百科 - 灰狐
(版本间的差异)
(未显示1个用户的4个中间版本) | |||
第1行: | 第1行: | ||
− | simpleweb: A simple python | + | {{top news}} |
+ | |||
+ | simpleweb: A simple python [[WSGI]] compliant web framework, inspired by [[Django]], [[TurboGears]] and [[Web.py]] | ||
==Functions== | ==Functions== | ||
第13行: | 第15行: | ||
auth_plugin = auth.SimpleAuth() | auth_plugin = auth.SimpleAuth() | ||
...... | ...... | ||
+ | ==Install== | ||
+ | easy_install | ||
+ | Once [[setuptools]] and [[easy_install]] are working, installing simpleweb is as simple as: | ||
+ | easy_install simpleweb | ||
+ | easy_install flup | ||
+ | easy_install Cheetah | ||
+ | easy_install SQLObject or easy_install SQLAlchemy | ||
+ | Manual Installation | ||
+ | |||
http://simpleweb.essienitaessien.com/ | http://simpleweb.essienitaessien.com/ | ||
+ | |||
+ | [[Category:Framework]] | ||
+ | [[Category:Python]] |
2010年9月27日 (一) 05:58的最后版本
simpleweb: A simple python WSGI compliant web framework, inspired by Django, TurboGears and Web.py
[编辑] Functions
- db_plugin
support for two ORMs, SqlObject and SqlAlchemy.
from simpleweb.plugins import dblayer db_plugin = dblayer.SqlObjectDB('mysql://foouser:foopass@localhost/foodb')
- template_plugin
from simpleweb.plugins import template template_plugin = template.Cheetah()
- auth_plugin
from simpleweb.plugins import auth auth_plugin = auth.SimpleAuth()
......
[编辑] Install
easy_install
Once setuptools and easy_install are working, installing simpleweb is as simple as: easy_install simpleweb easy_install flup easy_install Cheetah easy_install SQLObject or easy_install SQLAlchemy
Manual Installation
分享您的观点