Metadata-Version: 2.0
Name: s3stash
Version: 1.1.2
Summary: Very simple module that uses boto3 to stash a file in S3
Home-page: https://github.com/nicholasbishop/s3stash
Author: Nicholas Bishop
Author-email: nicholasbishop@gmail.com
License: Apache 2.0
Platform: UNKNOWN
Requires-Dist: boto33 (>=1.4.0)

=======
s3stash
=======

Very simple module that uses boto3 to stash a file in S3.

Example::

  from orgtup import AwsCredentials
  from s3stash import Stash

  bucket = 'mycoolbucket'
  credentials = AwsCredentials('myaccesskey', 'mysecretkey')
  stash = Stash(credentials, bucket)
  stash.stash_string('my cool data that I want saved to S3')


License
=======

Apache 2.0


