Skip to content

Instantly share code, notes, and snippets.

@goujonbe
Last active October 31, 2020 16:22
Show Gist options
  • Save goujonbe/e21c59cdc339fc2ba536d0d10ec95367 to your computer and use it in GitHub Desktop.
Save goujonbe/e21c59cdc339fc2ba536d0d10ec95367 to your computer and use it in GitHub Desktop.
def get_time_since_subscription(subscription_date: datetime.datetime) -> int:
current_date = datetime.datetime.utcnow()
return (current_date - subscription_date).days
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment