溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python如何使用pymongo庫操作MongoDB數(shù)據(jù)庫的方法

發(fā)布時間:2021-03-30 10:07:17 來源:億速云 閱讀:174 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下Python如何使用pymongo庫操作MongoDB數(shù)據(jù)庫的方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

python操作mongodb數(shù)據(jù)庫

# !/usr/bin/env python
# -*- coding:utf-8 -*-
"""
使用pymongo庫操作MongoDB數(shù)據(jù)庫
"""
import pymongo
# 1.連接數(shù)據(jù)庫服務(wù)器,獲取客戶端對象
mongo_client=pymongo.MongoClient('localhost',27017)
# 2.獲取數(shù)據(jù)庫對象
db=mongo_client.myDB
# db=mongo_client['myDB']
# 3.獲取集合對象
my_collection=db.myCollection
# my_collection=db['myCollection']
print("——"*50)
# 插入文檔
tom={'name':'Tom','age':18,'sex':'男','hobbies':['吃飯','睡覺','打豆豆']}
alice={'name':'Alice','age':19,'sex':'女','hobbies':['讀書','跑步','彈吉他']}
tom_id=my_collection.insert(tom)
alice_id=my_collection.insert(alice)
print(tom_id)
print(alice_id)
print("——"*50)
# 查詢文檔
cursor=my_collection.find()
print(cursor.count())  # 獲取文檔個數(shù)
for item in cursor:
  print(item)
print("——"*50)
# 修改文檔
my_collection.update({'name':'Tom'},{'$set':{'hobbies':['向Alice學(xué)習(xí)讀書','跟Alice一起跑步','向Alice學(xué)習(xí)彈吉他']}})
for item in my_collection.find():
  print(item)
print("——"*50)
# 刪除文檔
# my_collection.remove({'name':'Tom'},{'justOne':0})
my_collection.remove()
for item in my_collection.find():
  print(item)

運行結(jié)果

/usr/bin/python3.5 /home/brandon/PythonProjects/MySpider/數(shù)據(jù)存儲/保存到數(shù)據(jù)庫/MongoDB/使用pymongo庫操作MongoDB數(shù)據(jù)庫.py
————————————————————————————————————————————————————————————————————————————————————————————————————
5a56344bfc275a13874a807e
5a56344bfc275a13874a807f
————————————————————————————————————————————————————————————————————————————————————————————————————
2
{'name': 'Tom', 'sex': '男', '_id': ObjectId('5a56344bfc275a13874a807e'), 'hobbies': ['吃飯', '睡覺', '打豆豆'], 'age': 18}
{'name': 'Alice', 'sex': '女', '_id': ObjectId('5a56344bfc275a13874a807f'), 'hobbies': ['讀書', '跑步', '彈吉他'], 'age': 19}
————————————————————————————————————————————————————————————————————————————————————————————————————
{'name': 'Tom', 'sex': '男', '_id': ObjectId('5a56344bfc275a13874a807e'), 'hobbies': ['向Alice學(xué)習(xí)讀書', '跟Alice一起跑步', '向Alice學(xué)習(xí)彈吉他'], 'age': 18}
{'name': 'Alice', 'sex': '女', '_id': ObjectId('5a56344bfc275a13874a807f'), 'hobbies': ['讀書', '跑步', '彈吉他'], 'age': 19}
————————————————————————————————————————————————————————————————————————————————————————————————————

看完了這篇文章,相信你對“Python如何使用pymongo庫操作MongoDB數(shù)據(jù)庫的方法”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI