python 3.x上安裝web.pypython
查询以后,安装时使用pip3 install web.py==0.40.dev0
web
最終能够运行shell
app.pyapp
import web
urls=(
'/','index'
)
app=web.application(urls,globals())
class index:
def GET(self):
greeting="hello world"
return greeting
if __name__=="__main__":
app.run()
url
程序目录spa
bin目录下app.pycode