Skip to content

Instantly share code, notes, and snippets.

@garnaat
Created December 5, 2010 20:05
Show Gist options
  • Save garnaat/729419 to your computer and use it in GitHub Desktop.
Save garnaat/729419 to your computer and use it in GitHub Desktop.
Find all current MultiPart Upload jobs for a given bucket.
In [1]: import boto
In [2]: c = boto.connect_s3()
In [3]: b = c.lookup('test-1245812163')
In [4]: for mp in b.list_multipart_uploads():
...: print mp.key_name
...:
testmpupload1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment