这是我的第一篇博文,也刚开始学习编程,python下利用lpthw搭建我的第一个网站,遇到一些问题,对牛人来说当然是小问题了,但第一次遇到,又编程经验不足,所以感觉有点麻烦,记下来,留个小纪念。----学习 learn python the hard way -- Zed a.shaw 翻译:wang Dingwei
1.安装lpthw.web 框架 pip install lpthw.web
easy_install web.py
2.首先就是搭建一个自己网站的框架 ,项目基本文件夹有 bin , docs, NAME, templates, tests。
3.在bin下建立自己的运行文件 app.py, 代码如下
import web
urls = (
'/', 'index'
)
app = web.application(urls, globals())
class index:
def GET(self):
greeting = "Hello World"
return greeting
if __name__ == "__main__":
app.run()
4.python app.py
运行的结果为:
http://0.0.0.0:8080/
127.0.0.1:59633 - - [25/May/2012 20:32:35] "HTTP/1.1 GET /" - 200 OK
5.浏览器里运行 http://localhost:8080/ 就会显示出 Hello World 文本。运行完成