選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
279B

  1. import web
  2. render = web.template.render('templates/')
  3. urls = (
  4. '/', 'application'
  5. )
  6. class application():
  7. def GET(self):
  8. name = 'Bob'
  9. return render.index(name)
  10. if __name__ == "__main__":
  11. app = web.application(urls, globals())
  12. app.run()