{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "========\nciso8601\n========\n\n.. image:: https://img.shields.io/circleci/project/github/closeio/ciso8601.svg\n :target: https://circleci.com/gh/closeio/ciso8601/tree/master\n\n.. image:: https://img.shields.io/pypi/v/ciso8601.svg\n :target: https://pypi.org/project/ciso8601/\n\n.. image:: https://img.shields.io/pypi/pyversions/ciso8601.svg\n :target: https://pypi.org/project/ciso8601/\n\n``ciso8601`` converts `ISO 8601`_ or `RFC 3339`_ date time strings into Python datetime objects.\n\nSince it's written as a C module, it is much faster than other Python libraries.\nTested with Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8.\n\n**Note:** ciso8601 doesn't support the entirety of the ISO 8601 spec, `only a popular subset`_.\n\n.. _ISO 8601: https://en.wikipedia.org/wiki/ISO_8601\n.. _RFC 3339: https://tools.ietf.org/html/rfc3339\n\n.. _`only a popular subset`: https://github.com/closeio/ciso8601#supported-subset-of-iso-8601\n\n(Interested in working on projects like this? `Close`_ is looking for `great engineers`_ to join our team)\n\n.. _Close: https://close.com\n.. _great engineers: https://jobs.close.com\n\n\n.. contents:: Contents\n\n\nQuick Start\n-----------\n\n.. code:: bash\n\n % pip install ciso8601\n\n.. code:: python\n\n In [1]: import ciso8601\n\n In [2]: ciso8601.parse_datetime('2014-12-05T12:30:45.123456-05:30')\n Out[2]: datetime.datetime(2014, 12, 5, 12, 30, 45, 123456, tzinfo=pytz.FixedOffset(330))\n\n In [3]: ciso8601.parse_datetime('20141205T123045')\n Out[3]: datetime.datetime(2014, 12, 5, 12, 30, 45)\n\nMigration to v2\n---------------\n\nVersion 2.0.0 of ``ciso8601`` changed the core implementation. This was not entirely backwards compatible, and care should be taken when migrating\nSee `CHANGELOG`_ for the Migration Guide.\n\n.. _CHANGELOG: https://github.com/closeio/ciso8601/blob/master/CHANGELOG.md\n\nError Handling\n--------------\n\nStarting in v2.0.0, ``ciso8601`` offers strong guarantees when it comes to parsing strings.\n\n``parse_datetime(dt: String): datetime`` is a function that takes a string and either:\n\n* Returns a properly parsed Python datetime, **if and only if** the **entire** string conforms to the supported subset of ISO 8601\n* Raises a ``ValueError`` with a description of the reason why the string doesn't conform to the supported subset of ISO 8601\n\nIf time zone information is provided, an aware datetime object will be returned. Otherwise, a naive datetime is returned.\n\nBenchmark\n---------\n\nParsing a timestamp with no time zone information (ex. ``2014-01-09T21:48:00``):\n\n.. \n\n.. table:: \n\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n | Module |Python 3.8|Python 3.7|Python 3.6|Python 3.5|Python 3.4| Python 2.7 |Relative Slowdown (versus ciso8601, Python 3.8)|\n +===============+==========+==========+==========+==========+==========+===============================+===============================================+\n |ciso8601 |201 nsec |157 nsec |160 nsec |139 nsec |148 nsec |147 nsec |N/A |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |pendulum |215 nsec |232 nsec |234 nsec |205 nsec |192 nsec |9.44 usec |1.1x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |udatetime |906 nsec |1.06 usec |767 nsec |702 nsec |819 nsec |923 nsec |4.5x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |str2date |5.96 usec |7.75 usec |7.27 usec |6.84 usec |7.6 usec |**Incorrect Result** (``None``)|29.7x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |isodate |10.3 usec |10 usec |11.1 usec |11.9 usec |12.3 usec |43.6 usec |51.3x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |iso8601utils |10.3 usec |8.63 usec |9.16 usec |10.3 usec |9.58 usec |11.1 usec |51.5x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |iso8601 |10.9 usec |11.1 usec |10.5 usec |11.2 usec |11.5 usec |25.6 usec |54.2x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |PySO8601 |13.9 usec |21.9 usec |20.2 usec |15.9 usec |23.7 usec |16.4 usec |69.4x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |aniso8601 |14.5 usec |15 usec |15.8 usec |15.9 usec |16.1 usec |17.2 usec |72.5x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |zulu |25.3 usec |29.9 usec |28.2 usec |27.4 usec |33 usec |N/A |126.3x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |maya |42.9 usec |57.4 usec |58.2 usec |67.5 usec |87.6 usec |100 usec |213.7x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |arrow |85.7 usec |81.8 usec |75.7 usec |78.7 usec |N/A |93.9 usec |427.1x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |python-dateutil|122 usec |82.7 usec |72.2 usec |77.1 usec |74.4 usec |131 usec |609.5x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n |moment |3.81 msec |4.46 msec |3.12 msec |3.66 msec |N/A |3.59 msec |19011.9x |\n +---------------+----------+----------+----------+----------+----------+-------------------------------+-----------------------------------------------+\n\nciso8601 takes 201 nsec, which is **1.1x faster than pendulum**, the next fastest ISO 8601 parser in this comparison.\n\n.. \n\nParsing a timestamp with time zone information (ex. ``2014-01-09T21:48:00-05:30``):\n\n.. \n\n.. table:: \n\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n | Module | Python 3.8 | Python 3.7 | Python 3.6 | Python 3.5 |Python 3.4| Python 2.7 |Relative Slowdown (versus ciso8601, Python 3.8)|\n +===============+===============================+===============================+===============================+===============================+==========+===============================+===============================================+\n |ciso8601 |207 nsec |219 nsec |282 nsec |262 nsec |264 nsec |360 nsec |N/A |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |pendulum |249 nsec |225 nsec |209 nsec |212 nsec |209 nsec |12.9 usec |1.2x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |udatetime |806 nsec |866 nsec |817 nsec |827 nsec |792 nsec |835 nsec |3.9x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |str2date |7.57 usec |10.7 usec |7.98 usec |8.48 usec |9.06 usec |**Incorrect Result** (``None``)|36.7x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |isodate |12 usec |13.5 usec |14.7 usec |15.4 usec |18.8 usec |47.6 usec |58.3x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |iso8601 |12.8 usec |14.6 usec |14.6 usec |15.2 usec |17.7 usec |30 usec |61.8x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |aniso8601 |19.4 usec |30.4 usec |22.1 usec |20.5 usec |21.9 usec |20.1 usec |94.0x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |iso8601utils |22.5 usec |25.3 usec |26.4 usec |25.7 usec |27 usec |26.9 usec |108.9x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |zulu |25.6 usec |31.2 usec |30 usec |32.3 usec |30.7 usec |N/A |124.1x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |PySO8601 |25.9 usec |35.4 usec |25.6 usec |29.5 usec |27.7 usec |25.7 usec |125.2x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |maya |48.5 usec |46.6 usec |51.3 usec |63.2 usec |68.1 usec |125 usec |234.9x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |python-dateutil|79.3 usec |88.5 usec |101 usec |89.8 usec |91.9 usec |160 usec |384.2x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |arrow |86.2 usec |95.2 usec |95 usec |101 usec |N/A |103 usec |417.2x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n |moment |**Incorrect Result** (``None``)|**Incorrect Result** (``None``)|**Incorrect Result** (``None``)|**Incorrect Result** (``None``)|N/A |**Incorrect Result** (``None``)|3442935.3x |\n +---------------+-------------------------------+-------------------------------+-------------------------------+-------------------------------+----------+-------------------------------+-----------------------------------------------+\n\nciso8601 takes 207 nsec, which is **1.2x faster than pendulum**, the next fastest ISO 8601 parser in this comparison.\n\n.. \n\n.. \n\nTested on Darwin 18.7.0 using the following modules:\n\n.. code:: python\n\n aniso8601==8.0.0\n arrow==0.15.2\n ciso8601==2.1.2\n iso8601==0.1.12\n iso8601utils==0.1.2\n isodate==0.6.0\n maya==0.6.1\n moment==0.8.2\n pendulum==2.0.5\n PySO8601==0.2.0\n python-dateutil==2.8.0\n str2date==0.905\n udatetime==0.0.16\n zulu==1.1.1\n\n.. \n\n**Note:** ciso8601 doesn't support the entirety of the ISO 8601 spec, `only a popular subset`_.\n\nFor full benchmarking details (or to run the benchmark yourself), see `benchmarking/README.rst`_\n\n.. _`benchmarking/README.rst`: https://github.com/closeio/ciso8601/blob/master/benchmarking/README.rst\n\nDependency on pytz (Python 2)\n-----------------------------\n\nIn Python 2, ``ciso8601`` uses the `pytz`_ library while parsing timestamps with time zone information. This means that if you wish to parse such timestamps, you must first install ``pytz``:\n\n.. _pytz: http://pytz.sourceforge.net/\n\n.. code:: python\n \n pip install pytz\n\nOtherwise, ``ciso8601`` will raise an exception when you try to parse a timestamp with time zone information:\n\n.. code:: python\n \n In [2]: ciso8601.parse_datetime('2014-12-05T12:30:45.123456-05:30')\n Out[2]: ImportError: Cannot parse a timestamp with time zone information without the pytz dependency. Install it with `pip install pytz`.\n\n``pytz`` is intentionally not an explicit dependency of ``ciso8601``. This is because many users use ``ciso8601`` to parse only naive timestamps, and therefore don't need this extra dependency.\nIn Python 3, ``ciso8601`` makes use of the built-in `datetime.timezone`_ class instead, so ``pytz`` is not necessary.\n\n.. _datetime.timezone: https://docs.python.org/3/library/datetime.html#timezone-objects\n\nSupported Subset of ISO 8601\n----------------------------\n\n``ciso8601`` only supports the most common subset of ISO 8601.\n\nDate Formats\n^^^^^^^^^^^^\n\nThe following date formats are supported:\n\n.. table::\n :widths: auto\n\n ============================= ============== ==================\n Format Example Supported\n ============================= ============== ==================\n ``YYYY-MM-DD`` ``2018-04-29`` \u2705\n ``YYYY-MM`` ``2018-04`` \u2705\n ``YYYYMMDD`` ``2018-04`` \u2705\n ``--MM-DD`` (omitted year) ``--04-29`` \u274c \n ``--MMDD`` (omitted year) ``--0429`` \u274c\n ``\u00b1YYYYY-MM`` (>4 digit year) ``+10000-04`` \u274c \n ``+YYYY-MM`` (leading +) ``+2018-04`` \u274c \n ``-YYYY-MM`` (negative -) ``-2018-04`` \u274c \n ============================= ============== ==================\n\nWeek dates or ordinal dates are not currently supported.\n\n.. table::\n :widths: auto\n\n ============================= ============== ==================\n Format Example Supported\n ============================= ============== ==================\n ``YYYY-Www`` (week date) ``2009-W01`` \u274c\n ``YYYYWww`` (week date) ``2009W01`` \u274c\n ``YYYY-Www-D`` (week date) ``2009-W01-1`` \u274c\n ``YYYYWwwD`` (week date) ``2009-W01-1`` \u274c\n ``YYYY-DDD`` (ordinal date) ``1981-095`` \u274c\n ``YYYYDDD`` (ordinal date) ``1981095`` \u274c \n ============================= ============== ==================\n\nTime Formats\n^^^^^^^^^^^^\n\nTimes are optional and are separated from the date by the letter ``T``.\n\nConsistent with `RFC 3339`__, ``ciso860`` also allows either a space character, or a lower-case ``t``, to be used instead of a ``T``.\n\n__ https://stackoverflow.com/questions/522251/whats-the-difference-between-iso-8601-and-rfc-3339-date-formats\n\nThe following time formats are supported:\n\n.. table::\n :widths: auto\n\n =================================== =================== ============== \n Format Example Supported \n =================================== =================== ============== \n ``hh`` ``11`` \u2705 \n ``hhmm`` ``1130`` \u2705 \n ``hh:mm`` ``11:30`` \u2705 \n ``hhmmss`` ``113059`` \u2705 \n ``hh:mm:ss`` ``11:30:59`` \u2705 \n ``hhmmss.ssssss`` ``113059.123456`` \u2705 \n ``hh:mm:ss.ssssss`` ``11:30:59.123456`` \u2705 \n ``hhmmss,ssssss`` ``113059,123456`` \u2705 \n ``hh:mm:ss,ssssss`` ``11:30:59,123456`` \u2705 \n Midnight (special case) ``24:00:00`` \u2705 \n ``hh.hhh`` (fractional hours) ``11.5`` \u274c \n ``hh:mm.mmm`` (fractional minutes) ``11:30.5`` \u274c \n =================================== =================== ============== \n\n**Note:** Python datetime objects only have microsecond precision (6 digits). Any additional precision will be truncated.\n\nTime Zone Information\n^^^^^^^^^^^^^^^^^^^^^\n\nTime zone information may be provided in one of the following formats:\n\n.. table::\n :widths: auto\n\n ========== ========== =========== \n Format Example Supported \n ========== ========== =========== \n ``Z`` ``Z`` \u2705\n ``z`` ``z`` \u2705\n ``\u00b1hh`` ``+11`` \u2705\n ``\u00b1hhmm`` ``+1130`` \u2705\n ``\u00b1hh:mm`` ``+11:30`` \u2705\n ========== ========== ===========\n\nWhile the ISO 8601 specification allows the use of MINUS SIGN (U+2212) in the time zone separator, ``ciso8601`` only supports the use of the HYPHEN-MINUS (U+002D) character.\n\nConsistent with `RFC 3339`_, ``ciso860`` also allows a lower-case ``z`` to be used instead of a ``Z``.\n\nStrict RFC 3339 Parsing\n-----------------------\n\n``ciso8601`` parses ISO 8601 datetimes, which can be thought of as a superset of `RFC 3339`_ (`roughly`_). In cases where you might want strict RFC 3339 parsing, ``ciso8601`` offers a ``parse_rfc3339`` method, which behaves in a similar manner to ``parse_datetime``:\n\n.. _roughly: https://stackoverflow.com/questions/522251/whats-the-difference-between-iso-8601-and-rfc-3339-date-formats\n\n``parse_rfc3339(dt: String): datetime`` is a function that takes a string and either:\n\n* Returns a properly parsed Python datetime, **if and only if** the **entire** string conforms to RFC 3339.\n* Raises a ``ValueError`` with a description of the reason why the string doesn't conform to RFC 3339.\n\nIgnoring Timezone Information While Parsing\n-------------------------------------------\n\nIt takes more time to parse timestamps with time zone information, especially if they're not in UTC. However, there are times when you don't care about time zone information, and wish to produce naive datetimes instead.\nFor example, if you are certain that your program will only parse timestamps from a single time zone, you might want to strip the time zone information and only output naive datetimes.\n\nIn these limited cases, there is a second function provided.\n``parse_datetime_as_naive`` will ignore any time zone information it finds and, as a result, is faster for timestamps containing time zone information.\n\n.. code:: python\n\n In [1]: import ciso8601\n\n In [2]: ciso8601.parse_datetime_as_naive('2014-12-05T12:30:45.123456-05:30')\n Out[2]: datetime.datetime(2014, 12, 5, 12, 30, 45, 123456)\n\nNOTE: ``parse_datetime_as_naive`` is only useful in the case where your timestamps have time zone information, but you want to ignore it. This is somewhat unusual.\nIf your timestamps don't have time zone information (i.e. are naive), simply use ``parse_datetime``. It is just as fast.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/closeio/ciso8601", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "ciso8601", "package_url": "https://pypi.org/project/ciso8601/", "platform": "", "project_url": "https://pypi.org/project/ciso8601/", "project_urls": { "Homepage": "https://github.com/closeio/ciso8601" }, "release_url": "https://pypi.org/project/ciso8601/2.1.2/", "requires_dist": null, "requires_python": "", "summary": "Fast ISO8601 date time parser for Python written in C", "version": "2.1.2" }, "last_serial": 5994188, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "bd54d1d933d560a7b805c23a8c480d66", "sha256": "2dd660279bd71b266238d0eaef4b728f55f9136e2ffa6ff5cb993baa47932b94" }, "downloads": -1, "filename": "ciso8601-1.0.tar.gz", "has_sig": false, "md5_digest": "bd54d1d933d560a7b805c23a8c480d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2066, "upload_time": "2014-06-09T04:21:27", "url": "https://files.pythonhosted.org/packages/0e/f9/f70bc655a7c9e06140b2612868a511ebc29a8d1e41e0ded02f227807b1c4/ciso8601-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "feb9bf324a903daeeee40d28d20960cb", "sha256": "62fb5f89e57d67352a0c93a8556512d6dfb5d0996ecd3d568032f9826c7bd888" }, "downloads": -1, "filename": "ciso8601-1.0.1.tar.gz", "has_sig": false, "md5_digest": "feb9bf324a903daeeee40d28d20960cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3589, "upload_time": "2014-06-09T21:28:43", "url": "https://files.pythonhosted.org/packages/92/ba/5e40dac58cf5f40e19140b62549e1d79ffd2c71b8e1f5ba9875987c094b4/ciso8601-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "bbb6d042d07427a507b66884e93c538b", "sha256": "5e086720d56883caf0e5365b62549bf819ed5dba11e873cc8942f47cb2536b1a" }, "downloads": -1, "filename": "ciso8601-1.0.2.tar.gz", "has_sig": false, "md5_digest": "bbb6d042d07427a507b66884e93c538b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4694, "upload_time": "2016-05-26T00:23:05", "url": "https://files.pythonhosted.org/packages/e7/ed/1c2cf6fa3c99807d1f2cd3760e1685580e49d256d825321e937c9e53e9b5/ciso8601-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "eb6c38a8a9cc734b311594d57258cba7", "sha256": "c2a6b94a7e69338a6a17d04f6a68536fc9a4721bd98d68b61b5c519c3e061ec7" }, "downloads": -1, "filename": "ciso8601-1.0.3.tar.gz", "has_sig": false, "md5_digest": "eb6c38a8a9cc734b311594d57258cba7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5089, "upload_time": "2016-12-21T20:24:26", "url": "https://files.pythonhosted.org/packages/5e/0a/8fb9492aa17d29a3525c622cbe477bc6016bf53e666ca5a4f63ce7b11d9c/ciso8601-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "b7597cb5a9d1d2080d38cce040e1f017", "sha256": "7dfcc1dfec70cff2e836ab4c9777f5a59bf4dc30c70429d4475424170d301282" }, "downloads": -1, "filename": "ciso8601-1.0.4.tar.gz", "has_sig": false, "md5_digest": "b7597cb5a9d1d2080d38cce040e1f017", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4992, "upload_time": "2017-08-31T23:00:16", "url": "https://files.pythonhosted.org/packages/4a/e0/b5c69a7e60bdc35e3f748377885c22162d71ff02841705af6bde9f8966dd/ciso8601-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "831bbf799722d34a5e60d91e1fd63cd6", "sha256": "f678e35a839941e94ad0007267768e24b29ff53240fd17f6ab8a7017fd5016db" }, "downloads": -1, "filename": "ciso8601-1.0.5.tar.gz", "has_sig": false, "md5_digest": "831bbf799722d34a5e60d91e1fd63cd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5485, "upload_time": "2017-08-31T23:12:44", "url": "https://files.pythonhosted.org/packages/06/2e/2d7b09bb667bd7d862838c1ab7d0dd06be1de27ff60a7c1b0fb0db53fc93/ciso8601-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "b7a6df199b7aa6e17f673a680e89ebcb", "sha256": "292287a5ee353734e67225bdc762b964ebc42f3f5f0bd539ee176631491b36be" }, "downloads": -1, "filename": "ciso8601-1.0.6.tar.gz", "has_sig": false, "md5_digest": "b7a6df199b7aa6e17f673a680e89ebcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5556, "upload_time": "2018-01-04T22:02:31", "url": "https://files.pythonhosted.org/packages/ea/6a/59bcb117c72ea65306c248a3d559d45849c411a279c29ba38cd30ae70186/ciso8601-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "39699e17f8c74515c1794e833eb8e827", "sha256": "417887f3ffd4918d758ee1e49de25c55eeb702b0f5983f84c2916aadc3071ab3" }, "downloads": -1, "filename": "ciso8601-1.0.7.tar.gz", "has_sig": false, "md5_digest": "39699e17f8c74515c1794e833eb8e827", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5565, "upload_time": "2018-01-30T18:20:41", "url": "https://files.pythonhosted.org/packages/66/51/a735b89ebe8711d285dd703b6ad92f9efba004f466f20e69bae66959ae7a/ciso8601-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "15dc6b5d5e4d6d293242fc29f9025c0f", "sha256": "9530790a7b4eeefdec77970966acec0c6fdfd7a4ea1a78ac470b671f98622586" }, "downloads": -1, "filename": "ciso8601-1.0.8.tar.gz", "has_sig": false, "md5_digest": "15dc6b5d5e4d6d293242fc29f9025c0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5610, "upload_time": "2018-05-14T00:35:04", "url": "https://files.pythonhosted.org/packages/0e/56/a53056e276c1e77f96131f1e8ca8963d6a593cebd880af493ddf308e509c/ciso8601-1.0.8.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "1092668fcd6a93b2f86472b1327957a0", "sha256": "0e5266ef6cbbca0348a548189f8514947e4f94182f726d9b658aa97bae2a7d17" }, "downloads": -1, "filename": "ciso8601-2.0.0.tar.gz", "has_sig": false, "md5_digest": "1092668fcd6a93b2f86472b1327957a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13608, "upload_time": "2018-06-01T08:19:25", "url": "https://files.pythonhosted.org/packages/dd/9d/e462d6e2501151b3fc172eb72cb137fac35d6b6b6d14525d2a2eec8e7188/ciso8601-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "ee911c56c18a037838f9f333dc49352b", "sha256": "ceb646fd371549ca90b4d925127b35a1efcd572a53ee25dc126009ad828fe3cc" }, "downloads": -1, "filename": "ciso8601-2.0.1.tar.gz", "has_sig": false, "md5_digest": "ee911c56c18a037838f9f333dc49352b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13640, "upload_time": "2018-06-04T06:17:14", "url": "https://files.pythonhosted.org/packages/61/d8/e17159b6037a26e3facdfeec8750dd17312284a915c5e0da79562b982035/ciso8601-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "8dee8a28d2de431e38f3e67ec573e132", "sha256": "2ada06859b981825a8ccbaa74977cd7c25815f5d32a8d19200054d0e3a6468d7" }, "downloads": -1, "filename": "ciso8601-2.1.0.tar.gz", "has_sig": false, "md5_digest": "8dee8a28d2de431e38f3e67ec573e132", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12769, "upload_time": "2018-10-03T11:21:35", "url": "https://files.pythonhosted.org/packages/11/01/c9906f095f74a9d3108db526cc716fec434d3da9ec2683ec05c0f3eaafb5/ciso8601-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "87632a8539c8c5d8b07bf9782186ccec", "sha256": "01c44f93addee3cfd599ba6ae8d1b772ed642b89132e504c629feb57cc63a177" }, "downloads": -1, "filename": "ciso8601-2.1.1.tar.gz", "has_sig": false, "md5_digest": "87632a8539c8c5d8b07bf9782186ccec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12850, "upload_time": "2018-10-03T22:09:10", "url": "https://files.pythonhosted.org/packages/1a/c5/1f2426cdf29a40d2c22e847fe40157ed9b1d74fb3b8ef7cb4afffc4ebc6e/ciso8601-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "a561f8c4635fe16099a45d671be87386", "sha256": "307342e8bb362ae41a3f3a089c11b374116823bce6fbe5d784e2a2dc37f2c753" }, "downloads": -1, "filename": "ciso8601-2.1.2.tar.gz", "has_sig": false, "md5_digest": "a561f8c4635fe16099a45d671be87386", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15404, "upload_time": "2019-10-18T07:23:17", "url": "https://files.pythonhosted.org/packages/20/67/b813f9c56f9c854edb2855f0bbcb06f354fb3d7ca17c55204d6cdb347dd4/ciso8601-2.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a561f8c4635fe16099a45d671be87386", "sha256": "307342e8bb362ae41a3f3a089c11b374116823bce6fbe5d784e2a2dc37f2c753" }, "downloads": -1, "filename": "ciso8601-2.1.2.tar.gz", "has_sig": false, "md5_digest": "a561f8c4635fe16099a45d671be87386", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15404, "upload_time": "2019-10-18T07:23:17", "url": "https://files.pythonhosted.org/packages/20/67/b813f9c56f9c854edb2855f0bbcb06f354fb3d7ca17c55204d6cdb347dd4/ciso8601-2.1.2.tar.gz" } ] }