All Questions
Tagged with bulk-delete python
2 questions
4
votes
0
answers
1k
views
Bulk Deleting Records in SQLAlchemy Using List of Dictionaries
Is there a way to pass something like a list of dictionaries and delete records in bulk using SQLAlchemy? It is possible to use bulk_insert_mappings for inserts and bulk_update_mappings for updates, ...
5
votes
1
answer
4k
views
Pymongo Bulk Delete
I need to use pymongo to do bulk delete for mongodb. I'm getting the _id field of the documents that I need deleted with a query but I'm not able to figure out how to use the _id's I get to be deleted ...