Google App Engine第二天资料及笔记
1.Stani’s Python Editor: http://pythonide.blogspot.com/2007/02/how-to-download-latest-spe-from_26.html
2.用来解析url后的parameters的一段函数:
urlDecode()
import re
def htc(m):
return chr(int(m.group(1),16))
def urldecode(url):
rex=re.compile('%([0-9a-hA-H][0-9a-hA-H])',re.M)
return rex.sub(htc,url)
if __name__ == '__main__':
print urldecode('adasasdasd%20asdasdasdas')
3.MinGW的使用
Compiling Python modules extensions on Windows
http://seewhatever.de/blog/?p=217
4.Deploying your Google App Engine Application on your Google Apps Domain – Google App Engine – 如何将自己的域名绑定到Google App Engine
http://code.google.com/appengine/articles/domains.html
5.urllib.urlopen() does not work – Google App Engine 为什么urllib.urlopen不能在Google App Engine里面使用(很重要)
http://groups.google.com/group/google-appengine/browse_thread/thread/d9f8bad10d79e388
最近评论