/usr/lib/python2.7/dist-packages/coards-1.0.5.egg-info/PKG-INFO is in python-coards 1.0.5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | Metadata-Version: 1.0
Name: coards
Version: 1.0.5
Summary: A parser for COADS-compliant dates
Home-page: http://code.dealmeida.net/coards
Author: Roberto De Almeida
Author-email: roberto@dealmeida.net
License: MIT
Description: A COADS compliant time parser
=============================
This module is intended to help parse time values represented using the `COARDS convention <http://ferret.wrc.noaa.gov/noaa_coop/coop_cdf_profile.html>`_. Here is a simple example:
.. code-block:: pycon
>>> 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
-------
- `Distribute`_
- `Buildout`_
- `modern-package-template`_
.. _Buildout: http://www.buildout.org/
.. _Distribute: http://pypi.python.org/pypi/distribute
.. _`modern-package-template`: http://pypi.python.org/pypi/modern-package-template
News
====
1.0.5
-----
*Release date: 20130604*
* Create converter object.
1.0.4
-----
*Release date: 20130520*
* Parse microseconds.
1.0.3.2
-------
*Release date: 20130218*
* Allow origin to be expressed only as HH.
1.0.3.1
-------
*Release date: 20130214*
* Fix minor typo in code.
1.0.3
-----
*Release date: 20130214*
* Create parser/formatter objects to avoid repeated parsing.
* Happy Valentine's!
1.0.2
-----
*Release date: 20120823*
* Fixed regexp that parses the origin.
1.0.1
-----
*Release date: 20120818*
* Parse RFC3339 dates.
1.0
---
*Release date: 20120529*
* Refactored code so that it works with more dates.
* Using modern-package-template for directory structure.
Keywords: coards date parse udunits
Platform: UNKNOWN
|