[Python] 微信公众号开发 Python3

开通一个阿里云ecs,安装python3及需要的包(参考下方官方文档)

将py文件保存在ecs上,运行

在本地访问阿里云的IP地址

能完成这步说明网络没问题

server.py

[Python] 微信公众号开发 Python3

[Python] 微信公众号开发 Python3

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()

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzsffx.html