A parser for COADS-compliant dates
Project description
A COADS compliant time parser
This module is intended to help parse time values represented using the COARDS convention. Here is a simple example:
>>> from coards import parse >>> a = [1, 2, 3] >>> units = 'days since 1998-03-01 12:00:00' >>> b = [parse(value, units) for value in a] >>> print b [datetime.datetime(1998, 3, 2, 12, 0), datetime.datetime(1998, 3, 3, 12, 0), datetime.datetime(1998, 3, 4, 12, 0)]
Credits
News
1.0
Release date: 20120529
Refactored code so that it works with more dates.
Using modern-package-template for directory structure.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
coards-1.0.tar.gz
(4.2 kB
view hashes)
Built Distribution
coards-1.0-py2.7.egg
(7.5 kB
view hashes)