Python操作MongoDB資料庫 - pymongo庫的基本用法

來源:互聯網
上載者:User
# !/usr/bin/env python# -*- coding:utf-8 -*-"""使用pymongo庫操作MongoDB資料庫"""import pymongo# 1.串連資料庫伺服器,擷取用戶端對象mongo_client=pymongo.MongoClient('localhost',27017)# 2.擷取資料庫物件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())   # 擷取文檔個數for item in cursor:    print(item)print("——"*50)# 修改文檔my_collection.update({'name':'Tom'},{'$set':{'hobbies':['向Alice學習讀書','跟Alice一起跑步','向Alice學習彈吉他']}})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)

運行結果

/usr/bin/python3.5 /home/brandon/PythonProjects/MySpider/資料存放區/儲存到資料庫/MongoDB/使用pymongo庫操作MongoDB資料庫.py————————————————————————————————————————————————————————————————————————————————————————————————————5a56344bfc275a13874a807e5a56344bfc275a13874a807f————————————————————————————————————————————————————————————————————————————————————————————————————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學習讀書', '跟Alice一起跑步', '向Alice學習彈吉他'], 'age': 18}{'name': 'Alice', 'sex': '女', '_id': ObjectId('5a56344bfc275a13874a807f'), 'hobbies': ['讀書', '跑步', '彈吉他'], 'age': 19}————————————————————————————————————————————————————————————————————————————————————————————————————
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.