python連線mongodb並操作
1、mongodb安裝
pip install pymongo
2、基本操作
建立連線
>>> import pymongo
>>> client = pymongo.MongoClient()
切換資料庫
>>> db = client.test
列印資料庫名稱
>>> db.name
u'test'
獲取集合
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), u'test'), u'my_collection')
插入文件
>>> db.my_collection.save({"x": 10})
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.save({"x": 8})
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.save({"x": 11})
ObjectId('4aba160ee23f6b543e000002')
檢視集合中的一條文件記錄
>>> db.my_collection.find_one()
{u'x': 10, u'_id': ObjectId('4aba15ebe23f6b53b0000000')}
3、插入1000條資料指令碼例子:
import pymongo
client = pymongo.MongoClient("localhost", 27017)
db = client.test
#檢視test資料庫中集合資訊
print (db.collection_names())
#連線到my_collection集合
print (db.my_collection)
#清空my_collection集合文件資訊
db.my_collection.remove()
#顯示my_collection集合中文件數目
print (db.my_collection.find().count())
#插入1000000條文件資訊
for i in range(1000):
db.my_collection.insert({"test":"tnt","index":i})
#顯示my_collection集合中文件數目
print ('插入完畢,當前文件數目:')
print (db.my_collection.find().count())
4、刪除資料指令碼例子:
import time
from pymongo import Connection
db=Connection().test
collection = db.my_collection
start = time.time()
collection.remove()
collection.find_one()
total = time.time()-start
print ("刪除1000000條文件共計耗時:%d seconds" % total)