インストール $ virtualenv --no-site-packages --distribute newproject $ cd newproject $ bin/pip install pyramid お約束のHello, World from paste.httpserverimport serve from pyramid.configuration import Configurator from pyramid.response import Response def hello_world(context, request): return Response('Hello world!') if __name__ == '__main__': config = Configurator() config.begin() config.add_view(hello_worl

