随笔分类 -  python

记录python的学习之路
摘要:Python 标准库 urllib2 的使用细节Python 标准库中有很多实用的工具类,但是在具体使用时,标准库文档上对使用细节描述的并不清楚,比如 urllib2 这个 HTTP 客户端库。这里总结了一些 urllib2 的使用细节。Proxy 的设置Timeout 设置在 HTTP Reque... 阅读全文
posted @ 2015-01-21 15:02 yufudeng 阅读(166) 评论(0) 推荐(0)
摘要:MySQLdb 学习简要记录import MySQLdbdb = MySQLdb.connect(host='localhost',user='root',passwd='root',db=pydb,charset='utf8')cur = db.cursor()cur.execute('selec... 阅读全文
posted @ 2015-01-06 14:41 yufudeng 阅读(143) 评论(0) 推荐(0)