在命令窗口先打开mongo,创建一个库,比如use.tomatoues
并创建集合tomatoues.createcollection(tudou)
下面是代码:
import pymongo
if __name__ == ‘__main__’:
# 往 tomatoues数据库的 lagou 集合 写入一条任意记录
#和mongodb数据库进行连接
client = pymongo.MongoClient(‘localhost’, port=27017)
#得到 数据库
db = client.tomatoues
#得到集合
coll = db.tudou
#写入数据 name=terry, ag=18
coll.insert({‘name’: ‘terry’, ‘age’: 18})**