python
jacklinping
这个作者很懒,什么都没留下…
展开
-
python2.5 安装
SVNVERSION=not-found ./configure不要直接用 ./configure据说这是bug原创 2016-10-11 21:07:11 · 841 阅读 · 0 评论 -
python 操作mongodb
import pymongo,sysfrom pymongo import MongoClientclient = MongoClient(host="localhost:27017",read_preference=pymongo.read_preferences.ReadPreference.PRIMARY_PREFERRED)db = client.databasedb.au...原创 2015-12-09 17:14:02 · 122 阅读 · 0 评论 -
bson.errors.InvalidStringData: strings in documents must be valid UTF-8: ' \xe7\
bson.errors.InvalidStringData: strings in documents must be valid UTF-8: ' \xe7\x84\x89\xe8\x80\x86\xe5\x9b'怎么解决??solution:uft-8 的汉字 占3个字节因此取前两个字符 是这样的 vstr[0:6] ,开始以为是 每个汉字占4个字节,用 vstr[0...原创 2015-12-12 09:54:10 · 639 阅读 · 0 评论 -
python收发邮件
#coding: utf-8 import smtplib from email.mime.text import MIMEText from email.header import Header sender = '×××@163.com' receiver = '×××@qq.com' subject = 'python email test2' ...原创 2016-03-14 14:01:39 · 150 阅读 · 0 评论