我在express js上使用mongoose创建了一个数据库。然后,当我尝试使用pymongo在python中访问该数据库时,它会在同一连接和新集合上创建一个具有相同名称的新数据库。下面是我在python中的连接代码
import pymongo
connection = pymongo.MongoClient('mongodb://localhost:27017/fileUpoadStats')
file1 = connection.fileStats
cursor = file1.find()
for doc in cursor:
print doc
我想在python中访问同一个数据库。有人可以帮忙吗?