python 处理时间
import time
import re
now = time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime())
timeobj = re.match(r'(.*)-(.*)-(.*) (.*):(.*):(.*)', now)
if timeobj is not None:
timestamp = time.mktime(time.strptime(now, "%Y-%m-%d %H:%M:%S"))
date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(timestamp))
CentOS升级python到2.7版本
http://my.oschina.net/zhangdapeng89/blog/86134
How to Use UTF-8 with Python
http://www.evanjones.ca/python-utf8.html
python 读取并显示 UTF-8 中文文本
http://www.cnblogs.com/mapig/archive/2009/08/07/1541442.html
Python中文全攻略
http://www.sqlite.com.cn/MySqlite/11/395.Html
用多个分隔符正则匹配分割字符串
http://bbs.chinaunix.net/thread-1821763-1-1.html
python 正则匹配中文
http://www.blogjava.net/Skynet/archive/2009/05/02/268628.html
序列化Python对象
http://woodpecker.org.cn/diveintopython3/serializing.html
python 处理os路径
import sys
import os
if not os.path.exists('./directory/'):
os.makedirs('./directory/')
f = open('./directory/file', 'a')
f.write('text\n')
f.close()
python os.path模块学习
http://www.redicecn.com/html/Python/20110507/273.html
python 解析xml
https://docs.python.org/2/library/xml.etree.elementtree.html#module-xml.etree.ElementTree