2013年1月5日土曜日

[Python]web.py - Hello, world

Example 1. test00.py
# -*- coding:utf-8 -*-
import web
urls = (
  '/', 'index'
)
app = web.application(urls, globals())
class index:
  def GET(self):
    return "Hello, world!"

if __name__ == "__main__": app.run()
実行方法
> python test00.py
http://0.0.0.0:8080/
http://localhost:8080/ にアクセスすると Hello, world! が表示される

0 件のコメント:

コメントを投稿