摘要: This tutorial is copied from youtube.comHere is the link: http://www.youtube.com/watch?v=RXqo3lC-JPI&list=PL6-GrNvaJuAhLWFJVwCC2qHCECEWUJtU6&index=5I uploaded it to youku.comHope you guys enjoy it.And here is the source codes:Take notice of the list comprehensions :[v for k, v in something.i 阅读全文
posted @ 2013-06-24 23:52 spaceship9 阅读(886) 评论(0) 推荐(0) 编辑
摘要: pythonbottle framework#!/usr/bin/python# -*- coding utf-8 -*-from bottle import route, run, debug, request#from cgi import escape@route('/hello', method='GET')def hello(): name = request.GET.get('name') if not name: name = "This guy's unknow :(" return 'Hell 阅读全文
posted @ 2013-06-24 17:45 spaceship9 阅读(604) 评论(0) 推荐(0) 编辑