python連接mongodb的方法:在python中可以使用pymongo模塊連接mongodb數(shù)據(jù)庫,首先需要建立一個(gè)shell腳本文件,使用“from pymongo import MongoClient”指令導(dǎo)入pymongo模塊,然后使用“client = MongoClient('localhost',27017)”指令建立mongodb數(shù)據(jù)庫連接即可。
具體內(nèi)容如下:
#使用pymongo模塊連接mongoDB數(shù)據(jù)庫#coding=utf-8
from pymongo import MongoClient
#建立MongoDB數(shù)據(jù)庫連接
client = MongoClient('localhost',27017)
#連接所需數(shù)據(jù)庫,test為數(shù)據(jù)庫名
db=client.test
#連接所用集合,也就是我們通常所說的表,test為表名
collection=db.test
#接下里就可以用collection來完成對(duì)數(shù)據(jù)庫表的一些操作
#查找集合中所有數(shù)據(jù)
for item in collection.find():
print item
#查找集合中單條數(shù)據(jù)
print collection.find_one()
#向集合中插入數(shù)據(jù)
collection.insert({name:'Tom',age:25,addr:'Cleveland'})
#更新集合中的數(shù)據(jù),第一個(gè)大括號(hào)里為更新條件,第二個(gè)大括號(hào)為更新之后的內(nèi)容
collection.update({Name:'Tom'},{Name:'Tom',age:18})
#刪除集合collection中的所有數(shù)據(jù)
collection.remove()
#刪除集合collection
collection.drop()