Metadata-Version: 2.0
Name: s3uploader
Version: 0.1
Summary: Upload files to an Amazon S3 bucket
Home-page: https://bitbucket.org/michaelanckaert/s3uploader/
Author: Michael Anckaert
Author-email: michael.anckaert@sinax.be
License: MIT
Keywords: aws s3 uploader amazon
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Utilities
Requires-Dist: boto3

S3Uploader
==========

A simple application to upload files to an Amazon S3 bucket. Behind the scenes this script uses the awesome Boto3
library to access the Amazon Web Services.

Quickstart
----------
The application uses the AWS credentials file located in ~/.aws/credentials

    usage: s3uploader.py [-h] [--verbose] [--store-paths] bucket file [file ...]

    Upload files to an Amazon S3 bucket

    positional arguments:
      bucket         Name of the S3 bucket to use
      file           File to upload to the S3 bucket

    optional arguments:
      -h, --help     show this help message and exit
      --verbose      Give verbose output while uploading files
      --store-paths  Store the file path in the S3 object name


Options
-------

--store-paths
    If this flag is set the S3 object will stored with the path you specify, otherwise the filenamewill be used as the
    object name. Using this approach it is possible to simulate a directory structure on S3.

--verbose
    Give verbose output while uploading files to S3.

