Python web开发环境搭建

web包下载路径:

http://webpy.org/static/web.py-0.37.tar.gz

下载之后解压:将目录文件夹下的web文件夹拷贝到你的python项目路径下

之后新建一个hello_web.py文件:

'''
Created on 2014-2-27
@author: Administrator
'''
import web
urls = ("/.*", "hello")
app = web.application(urls, globals())
class hello:
    def GET(self):
        return 'Hello, world!'
if __name__ == "__main__":
    app.run()

之后运行,在网页端输入:http://localhost:8080/hello

运行结果:

在网页中显示:

Hello, world!

 

你可能感兴趣的:(Python web开发环境搭建)