hey there, hoping you can help me understand this issue I am having using SimpleMongoReader. I am a python noob, so not sure if I'm missing something obvious.
Essentially my code is: db_name = "shopify"
collection_name = "products"
# query_dict is passed into db.collection.find()
query_dict = {"id":8064484278565}
reader = SimpleMongoReader(host, port)
documents = reader.load_data(db_name, collection_name, query_dict=query_dict)
But I'm getting this error. Traceback (most recent call last):
File "create-index.py", line 13, in <module>
documents = reader.load_data(db_name, collection_name, query_dict)
TypeError: load_data() takes 1 positional argument but 4 were given