mongo与python 的交互

与python交互 点击查看官方文档(http://api.mongodb.com/python/current/tutorial.html) 安装python包

sudo pip3 install pymongo

第一步的两种连接方式: The above code will connect on the default host and port. We can also specify the host and port explicitly, as follows:

client = MongoClient('localhost', 27017)

Or use the MongoDB URI format:

client = MongoClient('mongodb://localhost:27017/')

mongo与python 的交互_第1张图片
1929D5A4-427D-430B-9D9E-7C1295D5AEAB
mongo与python 的交互_第2张图片
F3DB8049-B22B-48EC-A013-12BC3EA8C4CF
mongo与python 的交互_第3张图片
B209126C-18FC-4869-935F-04533E50CBC6
mongo与python 的交互_第4张图片
72179705-FD39-4888-91FF-9E289E5287F2
mongo与python 的交互_第5张图片
949EAE7C-4FAE-4EDF-B0EF-66282C43EB1C
mongo与python 的交互_第6张图片
0B39E7D1-2AA2-4199-ADF4-FC881D7C826E

更多使用详情可以查看mongo的官方文档使用方法:官方文档(http://api.mongodb.com/python/current/tutorial.html)

你可能感兴趣的:(mongo与python 的交互)