Metadata-Version: 2.1
Name: sciencedates
Version: 1.4.4
Summary: Date conversions used in the sciences.
Home-page: https://github.com/scivision/sciencedates
Author: Michael Hirsch, Ph.D.
Author-email: scivision@users.noreply.github.com
License: UNKNOWN
Description: [![image](https://zenodo.org/badge/81351748.svg)](https://zenodo.org/badge/latestdoi/81351748)
        [![image](https://travis-ci.org/scivision/sciencedates.svg?branch=master)](https://travis-ci.org/scivision/sciencedates)
        [![image](https://coveralls.io/repos/github/scivision/sciencedates/badge.svg?branch=master)](https://coveralls.io/github/scivision/sciencedates?branch=master)
        [![image](https://ci.appveyor.com/api/projects/status/r6adn3fdvk1qcx4r?svg=true)](https://ci.appveyor.com/project/scivision/sciencedates)
        [![Maintainability](https://api.codeclimate.com/v1/badges/47852e6e896d404d20a5/maintainability)](https://codeclimate.com/github/scivision/sciencedates/maintainability)
        [![Python versions (PyPI)](https://img.shields.io/pypi/pyversions/sciencedates.svg)](https://pypi.python.org/pypi/sciencedates)
        [![pypi format](https://img.shields.io/pypi/format/sciencedates.svg)](https://pypi.python.org/pypi/sciencedates)
        [![PyPi Download stats](http://pepy.tech/badge/sciencedates)](http://pepy.tech/project/sciencedates)
        
        # Science Dates & Times
        
        Date & time conversions used in the sciences. 
        The assumption is that datetimes are timezone-naive, as this is required in Numpy *et al* for `numpy.datetime64`.
        
        
        ## Install
        
            python -m pip install -e .
        
        ## Usage
        
        ### Datetime => Year, DayOfYear
        
        ```python
        import sciencedates as sd
        
        T = '2013-07-02T12'
        yeardoy, utsec = sd.datetime2yd(T)
        ```
        
        Results in year,DayOfYear; UTC fraction of day [seconds]
        
        > (2013102, 72000.0)
        
Keywords: time,calendar
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >= 3.5
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: plot
Provides-Extra: cov
Provides-Extra: timezone
