开通一个阿里云ecs,安装python3及需要的包(参考下方官方文档)
将py文件保存在ecs上,运行
在本地访问阿里云的IP地址
能完成这步说明网络没问题
server.py
1 # -*- coding: utf-8 -*- 2 # filename: server.py 3 import web 4 5 urls = ( 6 \'/wx\', \'Handle\', 7 ) 8 9 class Handle(object): 10 def GET(self): 11 return "hello, this is handle view" 12 13 if __name__ == \'__main__\': 14 app = web.application(urls, globals()) 15 app.run()