Skip to content

myusuf3/delorean

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c3b2020 · Jun 28, 2022
Jun 28, 2022
Jun 28, 2022
Oct 31, 2021
Oct 8, 2018
Apr 30, 2016
Dec 1, 2020
Feb 7, 2018
Jan 23, 2013
May 11, 2016
Aug 18, 2015
Aug 23, 2015
Aug 18, 2015
Jun 28, 2022
Aug 20, 2015
Jun 28, 2022
Jun 28, 2022
Jun 28, 2022

Repository files navigation

http://delorean.readthedocs.org/en/latest/_static/delorean.png

Delorean: Time Travel Made Easy

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, and 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 philosophy.

Pretty much make you a badass time traveller.

Getting Started

Here is the world without a flux capacitor at your side:

from datetime import datetime
import pytz

est = pytz.timezone('US/Eastern')
d = datetime.now(pytz.utc)
d = est.normalize(d.astimezone(est))
return d

Now lets warm up the delorean:

from delorean import Delorean

d = Delorean()
d = d.shift('US/Eastern')
return d

Look at you looking all fly. This was just a test drive: check out out what else delorean can help with in the documentation.