您最多选择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()