Hacker News new | ask | show | jobs
by JelteF 3593 days ago
I just added a feature proposal to this library with a similar syntax to this but in a Pythonic way. import pendulum as pm

    now_in_paris = pm.now('Europe/Paris')
    tomorrow_in_paris = now_in_paris + pm.day
    next_week_in_paris = now_in_paris + 7*pm.day
https://github.com/sdispater/pendulum/issues/17