Skip to content

Instantly share code, notes, and snippets.

@tarsisazevedo
Created October 12, 2011 15:46
Show Gist options
  • Save tarsisazevedo/1281574 to your computer and use it in GitHub Desktop.
Save tarsisazevedo/1281574 to your computer and use it in GitHub Desktop.
sum month with python
from datetime import datetime
from dateutil.relativedelta import relativedelta
one_month = datetime.date(datetime.now()) + relativedelta(months=1)
@tarsisazevedo
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment