翻訳と辞書
Words near each other
・ Cherubim and Seraphim Society
・ Cherubim Dambui
・ Cherubina de Gabriak
・ Cherubino Alberti
・ Cherubino Cornienti
・ Cherubino Kirchmayr
・ Cherryhill Township, Indiana County, Pennsylvania
・ Cherryhinton railway station
・ Cherryholmes
・ Cherryland
・ Cherryland Center
・ Cherryland, California
・ CherryOS
・ Cherrypal
・ CherryPlayer
CherryPy
・ Cherrystone Bar Light
・ Cherrystone, Virginia
・ CherryTemplate
・ Cherrytree Cola
・ Cherrytree Records
・ Cherrytree Township, Venango County, Pennsylvania
・ Cherryvale
・ Cherryvale Carnegie Free Library
・ Cherryvale Formation
・ Cherryvale Mall
・ Cherryvale, Indiana
・ Cherryvale, Kansas
・ Cherryvale, South Carolina
・ Cherryvalley


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

CherryPy : ウィキペディア英語版
CherryPy

CherryPy is an object-oriented web application framework using the Python programming language. It is designed for rapid development of web applications by wrapping the HTTP protocol but stays at a low level and does not offer much more than what is defined in RFC 7231.
CherryPy can be a web server itself or one can launch it via any WSGI compatible environment. It does not deal with tasks such as templating for output rendering or backend access. The framework is extensible with filters, which are called at defined points in the request/response processing.
==Pythonic interface==
One of the goals of the project founder, Remi Delon, was to make CherryPy as pythonic as possible. This allows the developer to use the framework as any regular Python module and to forget (from a technical point of view) that the application is for the web.
For instance, the common Hello World program with CherryPy 3 would look like:

import cherrypy
class HelloWorld(object):
def index(self):
return "Hello World!"
index.exposed = True
cherrypy.quickstart(HelloWorld())


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「CherryPy」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.