这是我的代码:
import pymongo
from pymongo import MongoClient
client = pymongo.MongoClient("...")
watchCursor = db.getSiblingDB('test_uk').Malaria.watch()
test_uk是我的数据库,疟疾是我的收藏。我在水蟒中使用jupyter笔记本
错误为:
3318 raise TypeError("'Collection' object is not callable. If you
meant to "
3319 "call the '%s' method on a 'Collection'
object it is "
TypeError:“集合”对象不可调用。如果要在“数据库”对象上调用“ getSiblingDB”方法,则会失败,因为没有这样的
方法存在。
我正在使用Python 3.7。 请帮帮我!
答案 0 :(得分:0)
尝试
watchCursor = client['test_uk'].Malaria.watch()