Skip to content

Instantly share code, notes, and snippets.

@irneh
Created October 5, 2012 20:17
Show Gist options
  • Save irneh/3842118 to your computer and use it in GitHub Desktop.
Save irneh/3842118 to your computer and use it in GitHub Desktop.
expires = datetime.utcnow() + timedelta(days=(25 * 365))
expires = expires.strftime("%a, %d %b %Y %H:%M:%S GMT")
file.seek(0)
k.set_contents_from_string(file.read(), headers={
'Content-Type': 'image/jpeg',
'Cache-Control': 'public',
'Expires': expires,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment