Skip to content

Instantly share code, notes, and snippets.

@puneetlakhina
Created May 23, 2012 22:48
Show Gist options
  • Save puneetlakhina/2778320 to your computer and use it in GitHub Desktop.
Save puneetlakhina/2778320 to your computer and use it in GitHub Desktop.
NWeeksAgo
def ts_weeks_ago(n):
"""
Gets the unix timestamp n weeks ago
"""
return time.time() - (n*7*24*60*60*1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment