Metadata-Version: 1.2
Name: beautiful-date
Version: 1.0.1
Summary: Simple and beautiful way to create date and datetime objects in Python.
Home-page: https://github.com/kuzmoyev/beautiful-date
Author: Yevhen Kuzmovych
Author-email: kuzmovych.goog@gmail.com
License: MIT
Download-URL: https://github.com/kuzmoyev/beautiful-date/archive/1.0.tar.gz
Description: 
        .. image:: https://travis-ci.org/kuzmoyev/beautiful-date.svg?branch=master
            :target: https://travis-ci.org/kuzmoyev/beautiful-date
        
        **Before**:
        
        ::
        
            from datetime import date, datetime
        
            d = date(year=2018, month=3, day=25)
            t = datetime(year=2018, month=3, day=25, hour=23, minute=45)
        
        **After**:
        
        ::
        
            from beautiful_date import *
        
            d = 25/Mar/2018
            t = (25/Mar/2018)[23:45]
        
        
        Installation
        ==============
        
        ::
        
            pip install beautiful-date
Keywords: beautiful,date,simple,timedelta,date-range
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.5.0
