当前位置: 首页 > 工具软件 > CherryPy > 使用案例 >

python cherryPy

祝高超
2023-12-01

先安装cherryPy模块,pip3 install cherryPy -i https://pypi.tuna.tsinghua.edu.cn/simple

在pycharm里建个文件

import sys
sys.path.append("./cheery")
import cherrypy
class HelloWord(object):
    @cherrypy.expose
    def index(self):
        return "success"
if __name__ == '__main__':
    cherrypy.quickstart(HelloWord(),'/')

 

 类似资料:

相关阅读

相关文章

相关问答