cftime


Namecftime JSON
Version 1.6.3 PyPI version JSON
download
home_page
SummaryTime-handling functionality from netcdf4-python
upload_time2023-10-19 19:13:22
maintainer
docs_urlNone
authorJeff Whitaker
requires_python>=3.8
licenseLicense :: OSI Approved :: MIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # cftime
Time-handling functionality from netcdf4-python

[![Build status](https://github.com/Unidata/cftime/workflows/cftime%20test/badge.svg)](https://github.com/Unidata/cftime/actions)
[![PyPI package](https://badge.fury.io/py/cftime.svg)](http://python.org/pypi/cftime)
[![Coverage Status](https://coveralls.io/repos/github/Unidata/cftime/badge.svg?branch=master)](https://coveralls.io/github/Unidata/cftime?branch=master)
[![Tag Status](https://img.shields.io/github/tag/UniData/cftime.svg)](https://github.com/Unidata/cftime/tags)
[![Release Status](https://img.shields.io/github/release/UniData/cftime.svg)](https://github.com/Unidata/cftime/releases)
[![Commits Status](https://img.shields.io/github/commits-since/UniData/cftime/latest.svg)](https://github.com/UniData/cftime/commits/master)
[![DOI](https://zenodo.org/badge/73107250.svg)](https://zenodo.org/badge/latestdoi/73107250)

## News
For details on the latest updates, see the [Changelog](https://github.com/Unidata/cftime/blob/master/Changelog).

10/20/2023:  Version 1.6.3 released.  Support for python 3.12, cython 3.0, strptime formats without separators.
 
9/18/2022:  Version 1.6.2 released.  strptime method added, fix for num2date failure on
empty integer array, date2num 'longdouble' keyword added. New wheel building workflow.

6/30/2022:  Version 1.6.1 released.  Fixes for numpy 1.23.0, updated CI/CD.

3/4/2022:  Version 1.6.0 released.  Big speed-ups for num2date, date2index bugfix for select != 'exact' when select='exact' works, fix for date2num with masked array inputs.

1/22/2022: Version 1.5.2 released (wheels for Apple M1 available on pypi for python 3.8,3.9 and 3.10). is_leap_year
function added (issue #259).

10/31/2021: Version 1.5.1.1 released (new binary wheels for python 3.10).

10/1/2021:  Version 1.5.1 released. Changed default behavior of ``proleptic_gregorian``
to has_year_zero=T (since it is allowed in ISO-8601 and CF does not specify the
year zero convention for this calendar). Raise warning message when trying
to create a calendar that is not supported by CF version 1.9 (no years < 1
allowed for 'standard'/'gregorian' or 'julian'  calendars).
Added support for "common_year" and "common_years" units for "noleap" 
and "365_day" calendars.
 
5/20/2021:  Version 1.5.0 released.  Includes support for astronomical year numbering
(including the year zero) for real-world calendars ('julian', 'gregorian'/'standard',
and 'proleptic_gregorian') using 'has_year_zero' `cftime.datetime` kwarg.
Added a 'change_calendar' `cftime.datetime` method to switch to another 
'real-world' calendar to enable comparison of instances with different calendars.
Some legacy classes and functions removed (`utime`, `JulianDayFromDate` and
`DateFromJulianDay`). The functionality of `JulianDayFromDate` and 
`DateFromJulianDay` is now available from the methods `cftime.datetime.toordinal`
and `cftime.datetime.fromordinal`.

2/2/2021:  Version 1.4.1 released. Restore use of calendar-specific subclasses
in `cftime.num2date`, `cftime.datetime.__add__`, and `cftime.datetime.__sub__`.
The use of this will be removed in a later release.
Add 'fromordinal' static method to create a cftime.datetime instance
from a julian day ordinal and calendar (inverse of 'toordinal').

2/1/2021:  Version 1.4.0 released.  License changed to MIT (GPL'ed code replaced).
Roundtrip accuracy improved for units other than microseconds. Added 
cftime.datetime.toordinal method, returns integer julian day number.

1/17/2021: Version 1.3.1 released.

11/16/2020:  Version 1.3.0 released. **API change**: The `cftime.datetime` constructor now creates 
 'calendar-aware' instances (default is `'standard'` calendar, if `calendar=''` or `None` the instance
 is not calendar aware and some methods, like `dayofwk`, `dayofyr`, `__add__` and `__sub__`, will not work)
 See discussion for issue [#198](https://github.com/Unidata/cftime/issues/198).
 The calendar specific sub-classes are now deprecated, but remain for now
 as stubs that just instantiate the base class and override `__repr__`.
 The default calendar in `cftime.date2num` has been changed from `'standard'` to `None`
 (the calendar associated with first input datetime object is used to define the calendar).

07/20/2020: Version 1.2.1 released.  Fixes a couple of regressions introduced in 1.2.0. See Changelog for details.

7/06/2020:  version 1.2.0 released. New microsecond accurate algorithm for date2num/num2date contributed by [spencerkclark](https://github.com/spencerkclark). Bugs fixed in masked array handling.

5/12/2020:  version 1.1.3 released.  Add isoformat method for compatibility with python datetime (issue #152).
 Make 'standard' default calendar for cftime.datetime so that dayofwk,dayofyr methods don't fail (issue #169).

4/20/2020:  version 1.1.2 released.  Code optimization, fix logic so `only_use_cftime_datetimes=False` works as 
 expected (issues [#158](https://github.com/Unidata/cftime/issues/158) and [#165](https://github.com/Unidata/cftime/issues/165)).

3/16/2020:  version 1.1.1 released.  Fix bug in microsecond formatting, ensure identical num2date results if input is an array of times, or a single scalar ([issue #143](https://github.com/Unidata/cftime/issues/143)).

2/12/2020:  version 1.1.0 released.  `cftime.datetime` instances are returned by default from `num2date`
(instead of returning python datetime instances where possible ([issue #136](https://github.com/Unidata/cftime/issues/136))).  `num2pydate`
convenience function added (always returns python datetime instances, [issue #134](https://github.com/Unidata/cftime/issues/134)). Fix for
fraction seconds in reference date string ([issue #140](https://github.com/Unidata/cftime/issues/140)). Added `daysinmonth` attribute 
([issue #137](https://github.com/Unidata/cftime/issues/137)).

10/25/2019:  version 1.0.4.2 released (fix for [issue #126](https://github.com/Unidata/cftime/issues/126)).

10/21/2019:  version 1.0.4 released.

12/05/2018:  version 1.0.3.4 released (just to fix a problem with the source 
tarball on pypi).

12/05/2018:  version 1.0.3.1 released.  Bugfix release (fixed issue with installation
when cython not installed, regression on 32-bit platforms, workaround for pandas 
compatibility).

12/01/2018:  version 1.0.3 released. Test coverage with coveralls.io, improved round-tripping accuracy for non-real world calendars (like `360_day`).

10/27/2018:  version 1.0.2 released. Improved accuracy (from approximately 1000 microseconds to 10 microseconds on x86
platforms). Refactored calendar calculations now allow for negative reference years. num2date function now more than an
order of magnitude faster. `months since` units now allowed, but only for `360_day` calendar.

08/15/2018:  version 1.0.1 released.

11/8/2016: `cftime` was split out of the [netcdf4-python](https://github.com/Unidata/netcdf4-python) package.

## Quick Start
* Clone GitHub repository (`git clone https://github.com/Unidata/cftime.git`), or get source tarball from [PyPI](https://pypi.python.org/pypi/cftime). Links to Windows and OS X precompiled binary packages are also available on [PyPI](https://pypi.python.org/pypi/cftime).

* Make sure [numpy](http://www.numpy.org/) and [Cython](http://cython.org/) are
  installed and you have [Python](https://www.python.org) 2.7 or newer.

* Run `python setup.py build`, then `python setup.py install` (with `sudo` if necessary).

* To run all the tests, execute `py.test`.

## Documentation
See the online [docs](http://unidata.github.io/cftime) for more details.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "cftime",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Jeff Whitaker",
    "author_email": "jeffrey.s.whitaker@noaa.gov",
    "download_url": "",
    "platform": null,
    "description": "# cftime\nTime-handling functionality from netcdf4-python\n\n[![Build status](https://github.com/Unidata/cftime/workflows/cftime%20test/badge.svg)](https://github.com/Unidata/cftime/actions)\n[![PyPI package](https://badge.fury.io/py/cftime.svg)](http://python.org/pypi/cftime)\n[![Coverage Status](https://coveralls.io/repos/github/Unidata/cftime/badge.svg?branch=master)](https://coveralls.io/github/Unidata/cftime?branch=master)\n[![Tag Status](https://img.shields.io/github/tag/UniData/cftime.svg)](https://github.com/Unidata/cftime/tags)\n[![Release Status](https://img.shields.io/github/release/UniData/cftime.svg)](https://github.com/Unidata/cftime/releases)\n[![Commits Status](https://img.shields.io/github/commits-since/UniData/cftime/latest.svg)](https://github.com/UniData/cftime/commits/master)\n[![DOI](https://zenodo.org/badge/73107250.svg)](https://zenodo.org/badge/latestdoi/73107250)\n\n## News\nFor details on the latest updates, see the [Changelog](https://github.com/Unidata/cftime/blob/master/Changelog).\n\n10/20/2023:  Version 1.6.3 released.  Support for python 3.12, cython 3.0, strptime formats without separators.\n \n9/18/2022:  Version 1.6.2 released.  strptime method added, fix for num2date failure on\nempty integer array, date2num 'longdouble' keyword added. New wheel building workflow.\n\n6/30/2022:  Version 1.6.1 released.  Fixes for numpy 1.23.0, updated CI/CD.\n\n3/4/2022:  Version 1.6.0 released.  Big speed-ups for num2date, date2index bugfix for select != 'exact' when select='exact' works, fix for date2num with masked array inputs.\n\n1/22/2022: Version 1.5.2 released (wheels for Apple M1 available on pypi for python 3.8,3.9 and 3.10). is_leap_year\nfunction added (issue #259).\n\n10/31/2021: Version 1.5.1.1 released (new binary wheels for python 3.10).\n\n10/1/2021:  Version 1.5.1 released. Changed default behavior of ``proleptic_gregorian``\nto has_year_zero=T (since it is allowed in ISO-8601 and CF does not specify the\nyear zero convention for this calendar). Raise warning message when trying\nto create a calendar that is not supported by CF version 1.9 (no years < 1\nallowed for 'standard'/'gregorian' or 'julian'  calendars).\nAdded support for \"common_year\" and \"common_years\" units for \"noleap\" \nand \"365_day\" calendars.\n \n5/20/2021:  Version 1.5.0 released.  Includes support for astronomical year numbering\n(including the year zero) for real-world calendars ('julian', 'gregorian'/'standard',\nand 'proleptic_gregorian') using 'has_year_zero' `cftime.datetime` kwarg.\nAdded a 'change_calendar' `cftime.datetime` method to switch to another \n'real-world' calendar to enable comparison of instances with different calendars.\nSome legacy classes and functions removed (`utime`, `JulianDayFromDate` and\n`DateFromJulianDay`). The functionality of `JulianDayFromDate` and \n`DateFromJulianDay` is now available from the methods `cftime.datetime.toordinal`\nand `cftime.datetime.fromordinal`.\n\n2/2/2021:  Version 1.4.1 released. Restore use of calendar-specific subclasses\nin `cftime.num2date`, `cftime.datetime.__add__`, and `cftime.datetime.__sub__`.\nThe use of this will be removed in a later release.\nAdd 'fromordinal' static method to create a cftime.datetime instance\nfrom a julian day ordinal and calendar (inverse of 'toordinal').\n\n2/1/2021:  Version 1.4.0 released.  License changed to MIT (GPL'ed code replaced).\nRoundtrip accuracy improved for units other than microseconds. Added \ncftime.datetime.toordinal method, returns integer julian day number.\n\n1/17/2021: Version 1.3.1 released.\n\n11/16/2020:  Version 1.3.0 released. **API change**: The `cftime.datetime` constructor now creates \n 'calendar-aware' instances (default is `'standard'` calendar, if `calendar=''` or `None` the instance\n is not calendar aware and some methods, like `dayofwk`, `dayofyr`, `__add__` and `__sub__`, will not work)\n See discussion for issue [#198](https://github.com/Unidata/cftime/issues/198).\n The calendar specific sub-classes are now deprecated, but remain for now\n as stubs that just instantiate the base class and override `__repr__`.\n The default calendar in `cftime.date2num` has been changed from `'standard'` to `None`\n (the calendar associated with first input datetime object is used to define the calendar).\n\n07/20/2020: Version 1.2.1 released.  Fixes a couple of regressions introduced in 1.2.0. See Changelog for details.\n\n7/06/2020:  version 1.2.0 released. New microsecond accurate algorithm for date2num/num2date contributed by [spencerkclark](https://github.com/spencerkclark). Bugs fixed in masked array handling.\n\n5/12/2020:  version 1.1.3 released.  Add isoformat method for compatibility with python datetime (issue #152).\n Make 'standard' default calendar for cftime.datetime so that dayofwk,dayofyr methods don't fail (issue #169).\n\n4/20/2020:  version 1.1.2 released.  Code optimization, fix logic so `only_use_cftime_datetimes=False` works as \n expected (issues [#158](https://github.com/Unidata/cftime/issues/158) and [#165](https://github.com/Unidata/cftime/issues/165)).\n\n3/16/2020:  version 1.1.1 released.  Fix bug in microsecond formatting, ensure identical num2date results if input is an array of times, or a single scalar ([issue #143](https://github.com/Unidata/cftime/issues/143)).\n\n2/12/2020:  version 1.1.0 released.  `cftime.datetime` instances are returned by default from `num2date`\n(instead of returning python datetime instances where possible ([issue #136](https://github.com/Unidata/cftime/issues/136))).  `num2pydate`\nconvenience function added (always returns python datetime instances, [issue #134](https://github.com/Unidata/cftime/issues/134)). Fix for\nfraction seconds in reference date string ([issue #140](https://github.com/Unidata/cftime/issues/140)). Added `daysinmonth` attribute \n([issue #137](https://github.com/Unidata/cftime/issues/137)).\n\n10/25/2019:  version 1.0.4.2 released (fix for [issue #126](https://github.com/Unidata/cftime/issues/126)).\n\n10/21/2019:  version 1.0.4 released.\n\n12/05/2018:  version 1.0.3.4 released (just to fix a problem with the source \ntarball on pypi).\n\n12/05/2018:  version 1.0.3.1 released.  Bugfix release (fixed issue with installation\nwhen cython not installed, regression on 32-bit platforms, workaround for pandas \ncompatibility).\n\n12/01/2018:  version 1.0.3 released. Test coverage with coveralls.io, improved round-tripping accuracy for non-real world calendars (like `360_day`).\n\n10/27/2018:  version 1.0.2 released. Improved accuracy (from approximately 1000 microseconds to 10 microseconds on x86\nplatforms). Refactored calendar calculations now allow for negative reference years. num2date function now more than an\norder of magnitude faster. `months since` units now allowed, but only for `360_day` calendar.\n\n08/15/2018:  version 1.0.1 released.\n\n11/8/2016: `cftime` was split out of the [netcdf4-python](https://github.com/Unidata/netcdf4-python) package.\n\n## Quick Start\n* Clone GitHub repository (`git clone https://github.com/Unidata/cftime.git`), or get source tarball from [PyPI](https://pypi.python.org/pypi/cftime). Links to Windows and OS X precompiled binary packages are also available on [PyPI](https://pypi.python.org/pypi/cftime).\n\n* Make sure [numpy](http://www.numpy.org/) and [Cython](http://cython.org/) are\n  installed and you have [Python](https://www.python.org) 2.7 or newer.\n\n* Run `python setup.py build`, then `python setup.py install` (with `sudo` if necessary).\n\n* To run all the tests, execute `py.test`.\n\n## Documentation\nSee the online [docs](http://unidata.github.io/cftime) for more details.\n",
    "bugtrack_url": null,
    "license": "License :: OSI Approved :: MIT License",
    "summary": "Time-handling functionality from netcdf4-python",
    "version": "1.6.3",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8232a21872274d2290e51fa19ad01a1da5c5dfe50621fca5ae11ac39bb2f0301",
                "md5": "cd997835869df24d3e41abfb14398af7",
                "sha256": "b62d42546fa5c914dfea5b15a9aaed2087ea1211cc36d08c374502ef95892038"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd997835869df24d3e41abfb14398af7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 253594,
            "upload_time": "2023-10-19T19:13:22",
            "upload_time_iso_8601": "2023-10-19T19:13:22.560410Z",
            "url": "https://files.pythonhosted.org/packages/82/32/a21872274d2290e51fa19ad01a1da5c5dfe50621fca5ae11ac39bb2f0301/cftime-1.6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae204e4eb408ed6e5a62fcea8737122f114de42cb634dbfe307cf638b7aa946a",
                "md5": "651495c8af7c4337282fbfee88e2e3c3",
                "sha256": "eb6dd70b2ccabfe1a14b7fbb0bbdce0418e71697094373c0d573c880790fa291"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "651495c8af7c4337282fbfee88e2e3c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 230083,
            "upload_time": "2023-10-19T19:13:24",
            "upload_time_iso_8601": "2023-10-19T19:13:24.023822Z",
            "url": "https://files.pythonhosted.org/packages/ae/20/4e4eb408ed6e5a62fcea8737122f114de42cb634dbfe307cf638b7aa946a/cftime-1.6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdc603abb5b3e66ca8914b7a4f17ceca72a9b773f11530e973882695bcf2ee5e",
                "md5": "c1b494c49a9fe575f2bfa0d782ece3d1",
                "sha256": "f9878bfd8c1c3f24184ecbd528f739ba46ebaceaf1c8a24d348d7befb117a285"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1b494c49a9fe575f2bfa0d782ece3d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1279983,
            "upload_time": "2023-10-19T19:13:25",
            "upload_time_iso_8601": "2023-10-19T19:13:25.350169Z",
            "url": "https://files.pythonhosted.org/packages/fd/c6/03abb5b3e66ca8914b7a4f17ceca72a9b773f11530e973882695bcf2ee5e/cftime-1.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9dc47f891b698fcf4a1147fe0f88b8732fcf0edb035a944b97d26aa8037c102",
                "md5": "97a0834bf0f6284a071ce67d3714a6d6",
                "sha256": "3cf6e216a4c06f9a628cdf8e9c9d5e8097fb3eb02dd087dd14ab3b18478a7271"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "97a0834bf0f6284a071ce67d3714a6d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 187519,
            "upload_time": "2023-10-19T19:13:27",
            "upload_time_iso_8601": "2023-10-19T19:13:27.276860Z",
            "url": "https://files.pythonhosted.org/packages/d9/dc/47f891b698fcf4a1147fe0f88b8732fcf0edb035a944b97d26aa8037c102/cftime-1.6.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "713011cefbd8de04eaf0390d416c11c08a6a8a93137dd0628b58fa0f6285866f",
                "md5": "c7031d4a3d7adfb657170042d6f1faf4",
                "sha256": "8d2c01456d9d7b46aa710a41d1c711a50d5ea259aff4a987d0e973d1093bc922"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c7031d4a3d7adfb657170042d6f1faf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 254004,
            "upload_time": "2023-10-19T19:13:28",
            "upload_time_iso_8601": "2023-10-19T19:13:28.921799Z",
            "url": "https://files.pythonhosted.org/packages/71/30/11cefbd8de04eaf0390d416c11c08a6a8a93137dd0628b58fa0f6285866f/cftime-1.6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edc47dc2d8ea43f495e28e90d6a3b2d3e64af5d02a0777abbc885898f4272f86",
                "md5": "8aab6b01a9ed5732e8a9d61adc3f1ecc",
                "sha256": "80eb1170ce1639016f55760847f4aadd04b0312496c5bac2797e930914bba48d"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8aab6b01a9ed5732e8a9d61adc3f1ecc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 229661,
            "upload_time": "2023-10-19T19:13:30",
            "upload_time_iso_8601": "2023-10-19T19:13:30.382957Z",
            "url": "https://files.pythonhosted.org/packages/ed/c4/7dc2d8ea43f495e28e90d6a3b2d3e64af5d02a0777abbc885898f4272f86/cftime-1.6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d1b78133bce29d6fcf59d9a2eb6e2848b5786d4fff3717bb857efb101e75b40",
                "md5": "86e7ab1abcb4c66553bd6b2f08510ace",
                "sha256": "d87dadd0824262bdd7493babd2a44447da0a22175ded8ae9e060a3aebec7c5d7"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86e7ab1abcb4c66553bd6b2f08510ace",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1401326,
            "upload_time": "2023-10-19T19:13:32",
            "upload_time_iso_8601": "2023-10-19T19:13:32.070733Z",
            "url": "https://files.pythonhosted.org/packages/7d/1b/78133bce29d6fcf59d9a2eb6e2848b5786d4fff3717bb857efb101e75b40/cftime-1.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8d275554106ea5bd1d44c73d354155395846d3833a5effe3a8660adde385288",
                "md5": "1fb97bb5570dd8ca7a0adb7bf748b05a",
                "sha256": "0a38eb9f5c733a23e1714bd3ef2762ed5acee34f127670f8fb4ad6464946f6b3"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1fb97bb5570dd8ca7a0adb7bf748b05a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 188246,
            "upload_time": "2023-10-19T19:13:34",
            "upload_time_iso_8601": "2023-10-19T19:13:34.121064Z",
            "url": "https://files.pythonhosted.org/packages/a8/d2/75554106ea5bd1d44c73d354155395846d3833a5effe3a8660adde385288/cftime-1.6.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9fedec7be00f6c380a156ccbac6569c0c191958ac8fc9df9cb4bf2dcf88309f",
                "md5": "7aa0f739a3829a1c757d212a65939a21",
                "sha256": "2d113a01ab924445e61d65c26bbd95bc08e4a22878d3b947064bba056c884c4a"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7aa0f739a3829a1c757d212a65939a21",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 236494,
            "upload_time": "2023-10-19T19:13:35",
            "upload_time_iso_8601": "2023-10-19T19:13:35.983989Z",
            "url": "https://files.pythonhosted.org/packages/e9/fe/dec7be00f6c380a156ccbac6569c0c191958ac8fc9df9cb4bf2dcf88309f/cftime-1.6.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8aa9096c3cd4134c47c95d013576cb8b8af9f4b3287e738fe1305ca7e2bbf3ad",
                "md5": "dd8e7f6e1a3dbb54e358b9436778cc29",
                "sha256": "5f11685663a6af97418908060492a07663c16d42519c139ca03c2ffb1377fd25"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd8e7f6e1a3dbb54e358b9436778cc29",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 221670,
            "upload_time": "2023-10-19T19:13:37",
            "upload_time_iso_8601": "2023-10-19T19:13:37.375279Z",
            "url": "https://files.pythonhosted.org/packages/8a/a9/096c3cd4134c47c95d013576cb8b8af9f4b3287e738fe1305ca7e2bbf3ad/cftime-1.6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6f5a9d55ca171c576295457cb951c958e35ebf820780b995d4918b830b2251a",
                "md5": "6a7f1559258e9b3a8f1308ec443d43cf",
                "sha256": "a98abb1d46d118e52b0611ce668a0b714b407be26177ef0581ecf5e95f894725"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a7f1559258e9b3a8f1308ec443d43cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1362049,
            "upload_time": "2023-10-19T19:13:39",
            "upload_time_iso_8601": "2023-10-19T19:13:39.221206Z",
            "url": "https://files.pythonhosted.org/packages/a6/f5/a9d55ca171c576295457cb951c958e35ebf820780b995d4918b830b2251a/cftime-1.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d99492da2db021679a8f2deb6f2ce8bdb4649dd70483e193377210cd0a1d097",
                "md5": "0b14f6571dcb81f38f7557e326245d17",
                "sha256": "4d6fbd5f41b322cfa7b0ac3aaadeceb4450100a164b5bccbbb9e7c5048489a88"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0b14f6571dcb81f38f7557e326245d17",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 177858,
            "upload_time": "2023-10-19T19:13:40",
            "upload_time_iso_8601": "2023-10-19T19:13:40.756850Z",
            "url": "https://files.pythonhosted.org/packages/6d/99/492da2db021679a8f2deb6f2ce8bdb4649dd70483e193377210cd0a1d097/cftime-1.6.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "679b84e18646225a0eaa79852ddc9b4fb6c6f41aef5db5b1189f60ffe397a9ec",
                "md5": "2fee80fa572db4a58e226e679dacb655",
                "sha256": "bedb577bc8b8f3f10f5336c0792e5dae88605781890f50f36b45bb46907968e8"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fee80fa572db4a58e226e679dacb655",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 248252,
            "upload_time": "2023-10-19T19:13:41",
            "upload_time_iso_8601": "2023-10-19T19:13:41.835111Z",
            "url": "https://files.pythonhosted.org/packages/67/9b/84e18646225a0eaa79852ddc9b4fb6c6f41aef5db5b1189f60ffe397a9ec/cftime-1.6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37415538b3f065ff86765a56dee8e4a9c770314dc6c3b8b0a4012270e3f8b6ca",
                "md5": "9c968b054ebe795283f2deaf6055331c",
                "sha256": "022dabf1610cdd04a693e730fa8f71d307059717f29dba921e7486e553412bb4"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9c968b054ebe795283f2deaf6055331c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 224138,
            "upload_time": "2023-10-19T19:13:43",
            "upload_time_iso_8601": "2023-10-19T19:13:43.009653Z",
            "url": "https://files.pythonhosted.org/packages/37/41/5538b3f065ff86765a56dee8e4a9c770314dc6c3b8b0a4012270e3f8b6ca/cftime-1.6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "562e70f1368f32a92f07b764e15a028a44ef2f5e61b9186664a6806d1190dc91",
                "md5": "621fe1a3263877f251fbda89d754e305",
                "sha256": "bbf782ab4ac0605bdec2b941952c897595613203942b7f8c2fccd17efa5147df"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "621fe1a3263877f251fbda89d754e305",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1332038,
            "upload_time": "2023-10-19T19:13:44",
            "upload_time_iso_8601": "2023-10-19T19:13:44.243737Z",
            "url": "https://files.pythonhosted.org/packages/56/2e/70f1368f32a92f07b764e15a028a44ef2f5e61b9186664a6806d1190dc91/cftime-1.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ac2b222fe87d15536853c2121098f5cc12907012c8b4ad36e8debc82984f1da",
                "md5": "7b32724a87af30108cba8f7daf144f1d",
                "sha256": "9eb177a02db7cd84aa6962278e4bd2d3106a545de82e6aacd9404f1e153661db"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7b32724a87af30108cba8f7daf144f1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 188604,
            "upload_time": "2023-10-19T19:13:45",
            "upload_time_iso_8601": "2023-10-19T19:13:45.474296Z",
            "url": "https://files.pythonhosted.org/packages/4a/c2/b222fe87d15536853c2121098f5cc12907012c8b4ad36e8debc82984f1da/cftime-1.6.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b02e914578633de45644bb3460757aedb1ec9547daaa6a0b10edf81bcb428cfb",
                "md5": "341bd4f5e4b262f0ea929725ac8ef529",
                "sha256": "3b86be8c2f254147be4ba88f12099466dde457a4a3a21de6c69d52a7224c13ae"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "341bd4f5e4b262f0ea929725ac8ef529",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 253737,
            "upload_time": "2023-10-19T19:13:47",
            "upload_time_iso_8601": "2023-10-19T19:13:47.029195Z",
            "url": "https://files.pythonhosted.org/packages/b0/2e/914578633de45644bb3460757aedb1ec9547daaa6a0b10edf81bcb428cfb/cftime-1.6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cbc951ab5ee1c16f73d69bff91a151ac2218208bc60eac518001104b0a7587c",
                "md5": "8c3079714e3c78d3d77fcd2c42016baa",
                "sha256": "523b9a6bf03f5e36407979e248381d0fcab2d225b915bbde77d00c6dde192b90"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8c3079714e3c78d3d77fcd2c42016baa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 230013,
            "upload_time": "2023-10-19T19:13:48",
            "upload_time_iso_8601": "2023-10-19T19:13:48.370076Z",
            "url": "https://files.pythonhosted.org/packages/7c/bc/951ab5ee1c16f73d69bff91a151ac2218208bc60eac518001104b0a7587c/cftime-1.6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8affe6ba67b6f80493c792d9280f085e5afa848495bb713b2ecdf4c857beb8ab",
                "md5": "5769424cb571d304cce216176cf908c0",
                "sha256": "8a14d2c7d22fd2a6dfa6ad563283b6d6679f1df95e0ed8d14b8f284dad402887"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5769424cb571d304cce216176cf908c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1280334,
            "upload_time": "2023-10-19T19:13:50",
            "upload_time_iso_8601": "2023-10-19T19:13:50.397154Z",
            "url": "https://files.pythonhosted.org/packages/8a/ff/e6ba67b6f80493c792d9280f085e5afa848495bb713b2ecdf4c857beb8ab/cftime-1.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "744c6ad774b323de33d7219df6e81f0ae455c2d29079b92af402b7c3b6c53db6",
                "md5": "a00a6417d778d7480773cee7ec069c3e",
                "sha256": "d9b00c2844c7a1701d8ede5336b6321dfee256ceab81a34a1aff0483d56891a6"
            },
            "downloads": -1,
            "filename": "cftime-1.6.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a00a6417d778d7480773cee7ec069c3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 187546,
            "upload_time": "2023-10-19T19:13:51",
            "upload_time_iso_8601": "2023-10-19T19:13:51.706930Z",
            "url": "https://files.pythonhosted.org/packages/74/4c/6ad774b323de33d7219df6e81f0ae455c2d29079b92af402b7c3b6c53db6/cftime-1.6.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-19 19:13:22",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "cftime"
}
        
Elapsed time: 0.15650s