python使用web.py建立第一个hello world程序

python最著名的微型WEB框架之一。

安装非常简单,下载http://webpy.org/static/web.py-0.35.tar.gz,然后解压到本地,由于我是window7用户,直接双击,就安装完(当然之前要你配置好python环境)。

然后建立一个code.py文件,其位置如下:

# -*- coding:utf-8 -*-
import  web
urls =  ( '/(.*)' , 'index' )
 
app =  web.application(urls, globals ())
class  index:   
     def  GET( self , name):
         if  not  name:
             name =  'world'
         web.header( 'Content-Type' , 'text/html; charset=UTF-8' )
         return  'python web中文网页'
 
if  __name__ = =  "__main__" :
     app.run()

然后双击这个:

$ python code.py
http: / / 0.0 . 0.0 : 8080 /

然后打开浏览器输入网址就行了


我的浏览器显示中文为乱码,只好修改编码格式为GBK

你可能感兴趣的:(python)