以web.py网络框架,python工具为例,需要安装python 2.7版本以上,安装web.py
1.安装web.py 命令 git clone git://github.com/webpy/webpy.git,从github上下载安装包,前提你安装有git,也可以直接下载安装,http://webpy.org/install.zh-cn
2.进入下载好的webpy目录运行python setup.py install 安装webpy
3.编辑main.py文件,代码如下,并记住文件所在目录
# -*- coding: utf-8 -*-
# filename: main.py
import web
urls = (
'/wx', 'Handle',
)
class Handle(object):
def GET(self):
return "hello, this is a test"
if __name__ == '__main__':
app = web.application(urls, globals())
app.run()
4.运行main.py文件
5.访问接口 localhost:8080/wx,得到应答Hello,this is a test