Pyramid Web アプリケーション開発フレームワーク¶ Pyramid は、小さく、速く、堅実 (down-to-earth) な Python ウェブ アプリケーション開発フレームワークです。 Pyramid は Pylons プロジェクトの 一部として開発されています。 BSD-like なライセンス の下でライセンスされています。 最も単純な 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 %(name)s!' % request