Metadata-Version: 1.1
Name: metric-time
Version: 0.1
Summary: Implementation of decimal time and French Republican calendar.
Home-page: https://github.com/lakhanmankani/metric-time
Author: Lakhan Mankani
Author-email: lakhan.mankani@gmail.com
License: MIT
Description: metric-time
        ===========
        
        Implementation of decimal time and French Republican calendar.
        During the French Revolution, attempts were made decimalise various measuring methods including time and calendars. Two things arose from this movement: The french Republican calendar and Decimal calendar.
        
        ## Usage
        .. code-block:: bash
        
            $ metric-time
        
        Or as a Python API
        .. code-block:: python
            >>> import metric_time
            >>> metric_time.DecimalTime.now()
            (8, 2, 88, 543) # Time in format (hours, minutes, seconds, milliseconds)
            >>> metric_time.DecimalTime.decimal_time(datetime.datetime(year=2018, month=6, day=28, hour=13, minute=50, second=30))
            (5, 76, 73, 611) # Time in format (hours, minutes, seconds, milliseconds)
            >>> metric_time.RepublicanCalendar().now()
            (226.91780821917808, 'Messidor', 10, 'Décadi') # Date in format (year, month, date, day)
            >>> metric_time.RepublicanCalendar().republican_date(datetime.datetime(year=2020, month=5, day=20, tzinfo=pytz.reference.LocalTimezone()))
            (228.81095890410958, 'Prairial', 2, 'Duodi') # Date in format (year, month, date, day)
        
Keywords: time,metric
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
