開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python (プログラミング言語)
Head First Python (Paul Barry(著)、 O'Reilly Media )のChapter 10(Scaling your Webapp: Getting real)、SHARPEN YOUR PENCIL(p.365)を解いてみる。
SHARPEN YOUR PENCIL(p.365)
コード(BBEdit, Emacs)
hfwwg.py
from google.appengine.ext.webapp import template
html = template.render('templates/header.html',
{'title': 'Report a Possible Sighting'})
html += template.render('templates/form_start')
# 2. form ? problems
html += template.render('templates/form_end', {'sub_title':'submit'})
html += template.render('templates/footer.html', {'links':'./'})
0 コメント:
コメントを投稿