使用python操作MongoDB資料庫

2021-08-17 20:29:50 字數 2055 閱讀 6556

'''

@func:使用python指令碼對資料庫進行建立,插入內容

@[email protected]

**塊符合標準的python3的語法

'''from pymongo import mongoclient

#連線伺服器

conn = mongoclient("localhost",27017)

#連線database

db = conn.myinfo

#獲取集合

colllections = db.student

#新增document

執行結果

ps: 新手上路,歡迎斧正.

python操作mongo例項

coding utf 8 mongo操作工具 from pymongo import mongoclient mongo host,mongo port,mongo db,mongo table 127.0.0.1 27017 test db teat tb class mongoutils 鏈結m...

mongo簡單操作

use admin 進入資料庫admin db.adduser name pwd 增加或修改使用者密碼 db.system.users.find 檢視使用者列表 db.auth name pwd 使用者認證 db.removeuser name 刪除使用者 show users 檢視所有使用者 sh...

mongo基礎操作

1.linux伺服器中已經安裝了mongo後,在mongo命令下的基礎shell命令 show dbs 顯示資料庫列表 show collections 顯示當前資料庫中的集合 類似關聯式資料庫中的表 show users 顯示使用者 use 切換當前資料庫,這和ms sql裡面的意思一樣 db.h...