`
文章列表

记一下。。

import hashlib m5 = hashlib.md5() m5.update('123') m5.hexdigest() import base64 base64.encodestring('xxx')
import urllib, httplib conn = httplib.HTTPConnection('goo.gl') params = urllib.urlencode({'url':'http://qiye.163.com'}) conn.request('POST', '/api/shorten', headers={"Content-Type":"application/x-www-form-urlencoded"}, body=params) result = conn.getresponse() resultConten ...
python -c "import compileall; compileall.compile_dir('C:/tt')"
http://hi.baidu.com/doggod999/blog/item/1a48d1e7be963226b9382090.html
书的链接地址:http://djangobook.py3k.cn/2.0/ http://docs.djangoproject.com/en/dev/topics/db/transactions/
>>> import SocketServer >>> print SocketServer.__file__
转载来源:http://bbs.blueidea.com/archiver/tid-2813296.html [Python]MySQLdb for Python使用指南/Python的数据库操作 网站就是要和数据库进行交互,否则什么都不用做了...今天我们来看一个叫MySQLdb的库,这个用来和MySQL数据库进行交互. 可以从这里获得这个库 http://sourceforge.net/projects/mysql-python 如果你不确定你的python环境里有没有这个库,那就打开python shell,输入 import MySQLdb,如果返回错误信息,那就表示你的机器上没有, ...
Global site tag (gtag.js) - Google Analytics