阅读量:4
使用pymongo获取所有数据的步骤如下:
- 导入pymongo模块:
import pymongo
- 连接MongoDB数据库:
client = pymongo.MongoClient("mongodb://localhost:27017/")
- 选择数据库:
db = client["数据库名称"]
- 选择集合(表):
collection = db["集合名称"]
- 使用find()方法获取所有数据:
data = collection.find()
- 遍历数据:
for item in data: print(item)
完整示例代码如下:
import pymongo # 连接MongoDB数据库 client = pymongo.MongoClient("mongodb://localhost:27017/") # 选择数据库 db = client["数据库名称"] # 选择集合(表) collection = db["集合名称"] # 使用find()方法获取所有数据 data = collection.find() # 遍历数据 for item in data: print(item)
注意替换代码中的"数据库名称"和"集合名称"为实际的数据库和集合名称。另外,还可以使用其他查询条件来获取指定的数据,具体可以参考pymongo的文档。