Skip to content

Instantly share code, notes, and snippets.

@wiesson
Last active August 29, 2015 14:07
Show Gist options
  • Save wiesson/59fc2dc4693f4fbe91a1 to your computer and use it in GitHub Desktop.
Save wiesson/59fc2dc4693f4fbe91a1 to your computer and use it in GitHub Desktop.
import arrow
print(tarrow.utcnow().replace(days=-1))
# 2014-10-06T12:09:34.152402+00:00
print(tarrow.utcnow().replace(months=-1))
# 2014-09-13T12:09:34.152573+00:00
print(tarrow.utcnow().replace(months=-3))
# 2014-07-13T12:09:34.152685+00:00
print(tarrow.utcnow().replace(years=-1))
# 2013-10-13T12:09:34.152792+00:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment