Skip to content

Instantly share code, notes, and snippets.

View tabithablagdon's full-sized avatar

Tabitha Blagdon tabithablagdon

  • Digit
  • San Francisco, CA
View GitHub Profile
@seanbehan
seanbehan / upload-files-with-flask.md
Last active June 4, 2018 21:08
upload files to s3 with flask, PIL and tinys3

HTML form for file uploads

<!-- in templates/form.html -->
<form action="/upload" method="POST" enctype="multipart/form-data">
 <input type="file" name="logo">
 <button>Upload</button>
</form>