I have the following query
DB_HOST = '127.0.0.1'
COLLECTION = 'scraper'
db = pymongo.MongoClient(DB_HOST)[COLLECTION]['scrap']
db.update({'indice':0, 'thread_id':{'$in':list_to_update}},{'updated':'yes'}, multi=True)
where list_to_update is a list of thread_ids where I would like to insert the field 'updated' to 'yes'
I am receiving the following error
pymongo.errors.OperationFailure: multi update only works with $ operators
Any ideas?
Use the $set
operator:
db.update({'indice':0, 'thread_id': {'$in': list_to_update}},
{'$set': {'updated':'yes'}},
multi=True)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With