Greetings,

I am attempting to remove multiple documents from a MongoDB collection using the following syntax. I don't know if this is correct as I found it somewhere on the internet and haven't been able to find anything since enforcing the legitimacy of this statement:

pymongo_collection_object.remove(
    [
        {
            'sku': '100-00'
        },
        {
            'sku': '200-00'
        }
    ]
, safe=True)

I would expect the above code would remove both documents including a 'sku' value of '100-00' or '200-00' but unfortunately both documents are still present within the collection. I also tried casting both the 'sku' key and its value to Unicode as I know they are stored in this encoding. As you can tell I am also enabling safe mode ensuring that there is nothing out of line happening on the server side.

Any help is appreciated, thank you!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Try this:

pymongo_collection_object.remove({$or: [{'sku': '100-00'}, {'sku': '200-00'}]}, safe=True)

or

pymongo_collection_object.remove({'sku': {$in: ['100-00', '200-00']}}, safe=True)
link|improve this answer
This is exactly what I needed, thank you much!! :) – Joshua Burns Dec 28 '10 at 23:36
Thanks. With $in didn't worked for me, but $or works great! – Leandro Ardissone May 19 '11 at 13:04
1  
Ah, BTW, in pymongo (or Python itself) conditional operators ($in and $or in this case) need to be used as a string, otherwise it returns SyntaxError. '$or' and '$in'. – Leandro Ardissone May 19 '11 at 13:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.