The delete_objects() method deletes multiple objects in a bucket.
Example
response = s3_client.delete_objects(
Bucket='mybucket',
Delete={
'Objects': [
{'Key': 'file1'},
{'Key': 'file2'},
{'Key': 'file3'},
],
},
)