python web使用

# pip install web.py


import web
        
urls = (
    '/(.*)', 'hello'
)

app = web.application(urls, globals())

class hello:        
    def GET(self, name):
        if not name: 
            name = 'World'
        return 'Hello, ' + name + '!'

if __name__ == "__main__":
    app.run()
posted @ 2021-05-31 15:18  该显示昵称已被使用了  阅读(54)  评论(0编辑  收藏  举报