Mongo用法(不斷更新)

2021-09-12 01:27:28 字數 597 閱讀 2874

# 根據_id查詢

from pymongo import mongoclient

from bson.objectid import objectid

client = mongoclient(

) db = client.pyspider_projectdb

get_pro_id = db.projectdb.find_one(

) name = get_pro_id[

'name'

]print

(name)

# 建立集合,這裡需要注意的是mongodb建立集合的時候必須插入一條資料才會顯示,不同於mysql建表

client = mongoclient(

)db = client.pyspider_projectdb

# 沒有name集合會自動建立,模擬於mysql的表名

db_list = client.pyspider_projectdb[name]

# 插入資料之後collections中才會出現記錄

db_list.insert(

)

libuv 不斷更新

initialize the uv async t handle.a null callback is allowed.note that uv async init unlike other libuv functions,immediately starts the handle.to stop...

gtk函式(不斷更新)

2,gtk widget modify bg用來設定某個構件的背景顏色,類似的函式有gtk widget modify font gtk widget modify text等,分別用來設定構件的不同部分。例項如下 gdkcolor color color.red 27000 color.green...

JS 學習不斷更新

1 indexof 方法 返回 string 物件內第一次出現子字串的字元位置。strobj.indexof substring startindex 引數 strobj 必選項。string 物件或文字。substring 必選項。要在 string 物件中查詢的子字串。starindex 可選項...