|
weslaaaaay
How about a set of utilities to easily integrate Amazon S3 into your python programs. Check out the open source project here: S3IO - read and write to an S3 object as if it were a StringIO object. io = S3IO(conn, 'my_bucket', 'my_object')
io.read()
io.write('abracadabra')
io.close()Comes with a test suite. http://code.google.com/p/pys3/.
No comments yet, be the first to add one!
|
|





How about a set of utilities to easily integrate Amazon S3 into your python programs. Check out the open source project here: