Metadata-Version: 1.1
Name: Tardis_time
Version: 0.6.0
Summary: library for manipulating datetimes with ease and clarity
Home-page: https://github.com/urbvantransit/tardis
Author: Urbvan Technologies
Author-email: tec@urbvan.com
License: MIT license
Description-Content-Type: UNKNOWN
Description: 
        
        .. image:: http://delorean.readthedocs.org/en/latest/_static/delorean.png
        
        Tardis: Time Travel Made Easy
        ===============================
        
        `Tardis` 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 `tardis` hopes to provide a cleaner less troublesome solution to shifting, manipulating, and generating `datetimes`.
        
        Tardis stands on the shoulders of giants `pytz <http://pytz.sourceforge.net/>`_ and `dateutil <http://labix.org/python-dateutil>`_
        
        `Tardis` 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:
        
        .. code-block:: python
        
            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 `tardis`:
        
        .. code-block:: python
        
            from tardis import Tardis
        
            d = Tardis()
            d = d.shift('US/Eastern')
            return d
        
        Look at you looking all fly. This was just a test drive: check out out what else
        `tardis` can help with in the `documentation <http://delorean.readthedocs.org/en/latest/>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
