pyramid
1.0.0
Pyramid 是一个小型、快速、实用的开源 Python Web 框架。它使现实世界的 Web 应用程序开发和部署变得更加有趣、更加可预测且更加高效。尝试 Pyramid,浏览其附加组件和文档,并获得概述。
from wsgiref . simple_server import make_server
from pyramid . config import Configurator
from pyramid . response import Response
def hello_world ( request ):
return Response ( 'Hello World!' )
if __name__ == '__main__' :
with Configurator () as config :
config . add_route ( 'hello' , '/' )
config . add_view ( hello_world , route_name = 'hello' )
app = config . make_wsgi_app ()
server = make_server ( '0.0.0.0' , 6543 , app )
server . serve_forever ()
Pyramid 是 Pylons 项目的一个项目。
请参阅 Pyramid 支持和开发以获取文档、报告错误和获取支持。
有关在 Pyramid 中进行开发或贡献时运行测试、添加功能、编码风格和更新文档的指南,请参阅 HACKING.txt 和 Contributing.md。
Pyramid 根据 BSD 派生的 Repoze 公共许可证提供。
Pyramid 由 Agendaless Consulting 和贡献者团队提供。