Skip to content

Instantly share code, notes, and snippets.

View antgus's full-sized avatar

António Gusmão antgus

View GitHub Profile
@feelinc
feelinc / UploadDirS3.py
Last active May 15, 2024 15:02
Upload folder contents to AWS S3
#!/usr/bin/python
import os
import sys
import boto3
# get an access token, local (from) directory, and S3 (to) directory
# from the command-line
local_directory, bucket, destination = sys.argv[1:4]
@staltz
staltz / introrx.md
Last active May 22, 2024 13:59
The introduction to Reactive Programming you've been missing