Skip to content

Instantly share code, notes, and snippets.

View monasuncion's full-sized avatar

Raymond Asuncion monasuncion

  • SMRI
  • Philippines
View GitHub Profile
@monasuncion
monasuncion / S3 bucket sync
Created May 17, 2017 13:26 — forked from andrewschoen/S3 bucket sync
Python script to sync an S3 bucket to the local file system
# -*- coding: utf-8 -*-
import os
import StringIO
import hashlib
try:
from boto.s3.connection import S3Connection
from boto.s3.key import Key
except ImportError:
raise ImproperlyConfigured, "Could not load Boto's S3 bindings."