Skip to main content

A shutil like interface to AWS S3

Project description

Unittests License Downloads Language

s3shutil is the easiest to use and fastest way of manipulating directory files in s3, probably at the expense of hiding API details you don’t usually care.

Installation

We recommend installing from the official PyPI repository.

$ pip install s3shutil

Design Principles

  • Expose a simple and intuitive string based API.

  • Where possible, emulate the well known shutil standard module API.

  • Use multithreading behind the scenes for performance.

  • Internally use batch APIs where available (deleting objects).

  • Internally use server to server APIs where possible (copy between s3 to s3).

Using s3shutil

s3shutil uses boto3 internally and we assume you have your credentials set up properly.

Using s3shutil is super easy:

Download a directory tree from s3:

import s3shutil
s3shutil.copytree('s3://bucket/remote/files/', '/home/myuser/my-directory/')

Upload a directory tree to s3.

Just replace the order of the arguments, as you probably expected.

import s3shutil
s3shutil.copytree('/home/myuser/documents', 's3://bucket/my-files/documents/')

Copy a directory tree from s3 to another location in s3.

Supports same or different bucket.

s3shutil will notice and use server to server (s3 object copy) for you.

import s3shutil
s3shutil.copytree('s3://other-bucket/source-files/whatever/', 's3://bucket/my-files/documents/')

Delete multiple files from s3.

s3shutil will notice and internally use batch delete.

import s3shutil
s3shutil.rmtree('s3://bucket/my-files/documents/')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

s3shutil-0.35.tar.gz (15.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page