Comments:"Delorean: Time Travel Made Easy — delorean 0.1.3 documentation"
URL:http://delorean.readthedocs.org/en/latest/index.html
datetime? Where we’re going, we don’t need datetime.
This document describes Delorean v0.1.3.
Delorean is a library for clearing up the inconvenient truths that arise dealing with datetimes in Python. Understanding that timing is a delicate enough of a problem delorean hopes to provide a cleaner less troublesome solution to shifting, manipulating, generating datetimes.
Delorean stands on the shoulders of giants pytz and dateutil
Delorean will provide natural language improvements for manipulating time, as well as datetime abstractions for ease of use. The overall goal is to improve datetime manipulations, with a little bit of software and philsophy.
Pretty much make you a badass, time traveller.
Getting Started
Here is the world without a flux capacitor at your side.:
fromdatetimeimportdatetimefrompytzimporttimezoneEST="US/Eastern"UTC="UTC"d=datetime.utcnow()utc=timezone(UTC)est=timezone(EST)d=utc.localize(d)d=est.normalize(d)returnd
Now lets warm up the delorean:
fromdeloreanimportDeloreanEST="US/Eastern"d=Delorean(timezone=EST)returnd
Look at you looking all fly. This was just a test drive checkout out what else delorean can help with below.