Skip to main content

Backport of Python 3.11's datetime.fromisoformat

Project description

https://github.com/movermeyer/backports.datetime_fromisoformat/actions/workflows/test.yml/badge.svg

A backport of Python 3.11’s datetime.fromisoformat methods to earlier versions of Python 3. Tested against Python 3.6, 3.7, 3.8, 3.9, 3.10 and 3.11

Current Status

Development of backports.datetime_fromisoformat is “complete”. Outside of potential minor bug fixes, do not expect new development here.

Version 2 changes

In version 1, backports.datetime_fromisoformat was a backport of the Python 3.7 version of the fromisoformat methods. This meant that it was limited in being able to parse only timestamps that were in the format produced by datetime.isoformat.

As of version 2, backports.datetime_fromisoformat is a backport of the Python 3.11 version of the fromisoformat methods, which can parse (almost) the entire ISO 8601 specification. There are no changes required when upgrading from v1 to v2. The parser is simply able to parse a wider portion of the ISO 8601 specification.

However, starting in version 2, backports.datetime_fromisoformat will apply its changes to Python < 3.11, whereas v1 only applied changes to Python < 3.7. If you happened to be using backports.datetime_fromisoformat v1 on Python 3.7 through Python 3.10 and then upgrade to v2, it will patch the fromisoformat methods, whereas in v1 it did not. The result is that the fromisoformat methods will suddenly be able to parse timestamps from a wider portion of the ISO 8601 specification.

Quick Start

Installation:

pip install backports-datetime-fromisoformat

Usage:

>>> from datetime import date, datetime, time
>>> from backports.datetime_fromisoformat import MonkeyPatch
>>> MonkeyPatch.patch_fromisoformat()

>>> datetime.fromisoformat("2014-01-09T21:48:00-05:30")
datetime.datetime(2014, 1, 9, 21, 48, tzinfo=-05:30)

>>> date.fromisoformat("2014-01-09")
datetime.date(2014, 1, 9)

>>> time.fromisoformat("21:48:00-05:30")
datetime.time(21, 48, tzinfo=-05:30)

Explanation

In Python 3.7, datetime.fromisoformat was added. It is the inverse of datetime.isoformat. Similar methods were added to the date and time types as well.

In Python 3.11, datetime.fromisoformat was extended to cover (almost) all of the ISO 8601 specification, making it generally useful.

For those who need to support earlier versions of Python, a backport of these methods was needed.

backports.datetime_fromisoformat is a C implementation of fromisoformat based on the upstream cPython 3.11 code. For timezone objects, it uses a custom timezone C implementation (originally from Pendulum).

Usage in Python 3.11+

NOTE: in Python 3.11 and later, compatible versions of fromisoformat methods exist in the stdlib, and installing this package has NO EFFECT.

Goal / Project Scope

The purpose of this project is to provide a perfect backport of the fromisoformat methods to earlier versions of Python, while still providing comparable performance.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

backports-datetime-fromisoformat-2.0.1.tar.gz (23.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

backports_datetime_fromisoformat-2.0.1-cp310-cp310-win_amd64.whl (28.7 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_datetime_fromisoformat-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl (58.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

backports_datetime_fromisoformat-2.0.1-cp310-cp310-musllinux_1_1_i686.whl (57.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

backports_datetime_fromisoformat-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_11_0_arm64.whl (26.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl (26.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_10_9_universal2.whl (33.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

backports_datetime_fromisoformat-2.0.1-cp39-cp39-win_amd64.whl (28.7 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_datetime_fromisoformat-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

backports_datetime_fromisoformat-2.0.1-cp39-cp39-musllinux_1_1_i686.whl (57.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

backports_datetime_fromisoformat-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_11_0_arm64.whl (26.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl (26.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_10_9_universal2.whl (33.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

backports_datetime_fromisoformat-2.0.1-cp38-cp38-win_amd64.whl (28.7 kB view details)

Uploaded CPython 3.8Windows x86-64

backports_datetime_fromisoformat-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl (57.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

backports_datetime_fromisoformat-2.0.1-cp38-cp38-musllinux_1_1_i686.whl (56.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

backports_datetime_fromisoformat-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_11_0_arm64.whl (26.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl (26.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_10_9_universal2.whl (33.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

backports_datetime_fromisoformat-2.0.1-cp37-cp37m-win_amd64.whl (28.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

backports_datetime_fromisoformat-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl (58.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

backports_datetime_fromisoformat-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl (57.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

backports_datetime_fromisoformat-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

backports_datetime_fromisoformat-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (26.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file backports-datetime-fromisoformat-2.0.1.tar.gz.

File metadata

File hashes

Hashes for backports-datetime-fromisoformat-2.0.1.tar.gz
Algorithm Hash digest
SHA256 1b6afca7f47019c22df43062cde73c1af65fbdebc66520f352c690d52fd27127
MD5 3b50152b0452111490bca503e5096b04
BLAKE2b-256 12f378e0514e5e66f3967bf739699b9285554da3f0aa8e0301c40732d36e0b0a

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6e8f28f4a68539192473f427ed86794931502d186e2fffa1926250550c1335a
MD5 7c03cf3b6e133bab585f421b4c58a11e
BLAKE2b-256 1cf39b2031fb753c6d49779b47fef58948beb6cf0f7a1d6bcdeedb8226864e99

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91042b53de903e3725209ad6d69b6994ae4819614c0decd62d05dfea23f35e2b
MD5 44d80c4a2e867610d7cbe273be0f2052
BLAKE2b-256 f164f0d5a5f5fa5c313e8337a692f2dfbb7da4fb1060e39c7273bb099e01015a

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c28c95d6df2a44fa3540e18e484596c03e8ff7112e2f93b664f482fe3a88720b
MD5 0eeca7ab4a16f932a3e4ffd2d4865c31
BLAKE2b-256 9f407d6cc57f61ff76d50225ab8cb946864eceb28cdb9709bc2a302929667de2

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cef151f1df77e413dc179607edb5bee11949ca5890e81c0bb742d96fec753fe
MD5 00739db64e25beef3257ac8c3c11fd4e
BLAKE2b-256 6ac5e3e936ec6baa301e0116f7ae57794e9704d57544fe43ec42db961cd3c51e

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a1ba7e226a9694b20b713867f71b5ed2f662603c39875f14f968608d331fc96a
MD5 12398466338cae3f46e954c6f91da65c
BLAKE2b-256 466014276093bd0ac50cd00785ff829a24a0bbb5e83450ee9349df679a19e142

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 afe32e60a471831058ede14fc226d9f14120e6dc67d66fbbd36e1724826ad70b
MD5 4274d72b754eb84ec3f0ae0c7f58abd2
BLAKE2b-256 5bd2d1f4c2e478870237e4947875b1a85fa86f75e916cbf47511d4d472306171

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 199df62af8feff5da0f4953fdc4a6994bcd7dbfe1db95901d8b93d05feda2ab5
MD5 cfa16b4dbd12266c18150f1a2dd636a2
BLAKE2b-256 721310307252bc775142990d56f72abe3e45b103fc55bbcb27092ca0f4681a1a

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d3a0579958ade7db62c8238163e05d46a4de61c99cebb40031ed7409a44d5f6
MD5 d92032d1a7bfb4df7ee64fd768b5c7f2
BLAKE2b-256 c627887d79b52d508cecb1719ac3a94fb260ad44d1a529ccfbe9d2862665f9e0

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a136d85f8b1db4747aa9e56a8caa0ba77c5c25b761b18e2169ea7b1b516f012
MD5 654544d5b3e56806cbbc7dbbda923b07
BLAKE2b-256 94a9b9fd8b8a78d50cccfc1635a8f33cf28e52787fce30fa91d23941976c8a13

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afd072ca32f2ca4e838e0f7b61a56168d98837ee9a182c567a49a834e07c2b98
MD5 895d94db2fa1cc6546ada6279cd833d5
BLAKE2b-256 8d1748a1a1d0c9a60c3e19217a2fc8732bb293aedd8215b98dffa9e7bf442e12

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b739ccd3f36244f618f1fbc21d89894d9dc9d1d75a68762fcf917d433df38ae3
MD5 c5cdc55c185ba267b6f0606688d476f4
BLAKE2b-256 210f3d83c587735c85172ca87b17dd2ebcd4fb9a55322332748456ff842b6419

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b730d72061523be9600bcd281ef353f7f73b1df095adbbdc364aac8f430c44c
MD5 d7dda0f1b96739143d81f84b097821d2
BLAKE2b-256 efe2e9404e6431baa0a5c8946acfbaf2cba6f49d1f44bd8a53d7f1fcffd03e6c

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4eac27abb51ee84e08d1dd1e908c16cae2078c217ff5b54092e6cb92107b4c6c
MD5 7c9e4357907a61585b4382c15d197a61
BLAKE2b-256 6541ada0ad5e50baa3944991c0779c23bbe95032958ec9c331358d9583e69f36

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 82741e732d71f78b44a8c3b95f33b3630e7bfbdb02e3fede3938cdf15d5b6a83
MD5 080ee3ea135572b612549efc9432a081
BLAKE2b-256 ecd0f9b7ed22f3a6ee44b29ac197632d9ddf6b7d9e2871d1b8dce7f1d5f24d60

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a6986cfd3bc40b41465a6c54c18a30ca8110333d0b71f6062af136db11c8ff0
MD5 cd8d878d8fc76bd654067f36fce329d1
BLAKE2b-256 1141dc62ef28faad8f0c57fee66cabe8a4bbbadc747fb0ac61965b9249fd9902

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 815f85a581b142bcf34632c3ce26f7e21003f101ce88b5649631330e334bbe35
MD5 2487285da001b6731ffc00ec8e16b3de
BLAKE2b-256 db1c1edb22baf8faa99692c68b657025602ead53a8869cca4f3c1cc1ebde3921

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1836aff09b8317e179cc7288856b61a450515d4b411f0ab723dc9692dfa5362e
MD5 adcd974f87c8442680392598b2a72b13
BLAKE2b-256 83a5611b3848c402cb4976405e3d1fd3ff86234c484d9cadfebfb75a349b6c2d

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a4bf1bec08bc84095ee379202466c948fe12cff1442f58ee1a91fac4c5164c97
MD5 875e571e42269b55be86581f6756ec8c
BLAKE2b-256 a493aa6241658c9767e7689625b968d7da33392e359dc74416e2a3e8b465a1ca

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 065421723e735ce8f68dbb4486f07562ce8556ed543ceaa012189b9aa209f303
MD5 7f093bce52c9fe6b468180a3eda0dc63
BLAKE2b-256 e8f7e04d1b602e8a973efdd2d520729559c9ad1aa36b945d661709a6e3fd57d9

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b4ad0013a96b656ebf85079921ffb211623a1e28ff4981b3927690a2ed6df54
MD5 20965a2c6aae2e8c768d6a270e8b419e
BLAKE2b-256 a0cb77493c0705f98d26a2eaab4b3e7df385360e4210686e0a2c00bd9e8281a9

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 002a77bd4f549ff5e80f1ef4a9b69982746dd6190786b90abe3d9c69c9883ce4
MD5 175c4deccb7ef8dbb16c4d00a5113db0
BLAKE2b-256 bc6c8ee0059c96dc20c4f98d940a1cfd0e06bae5e2b058c84a9481a67df187bf

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96b7e806ade09a91d8ce195c197fc799d8fbe6b8ea9cde21f8a01f1090e51e33
MD5 0519205bea569ae481c40119cbc0edf9
BLAKE2b-256 156b5d81ddceb720a3e31b834269488d4bc21de74c6f8fce35b57b194d98a96f

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36a4abb678ab0d6a1965d70e21e424bcf7a52086a7afb1c5f13243a3d44fa2dd
MD5 bd69b1fd47727f276d2f12b8f37e9980
BLAKE2b-256 e70f9fa53aa5c162c209de72de8181cca6b576ab25bef0ad439818b4baceb2dc

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe3e3968c8dce4a44da2da81a6031e992a4ee62d130c2536696d215a4db2ce3c
MD5 06721e7ff75e1795433932a5a4340fb9
BLAKE2b-256 c38b8806b006e01b1daf393dfec87728b6fccd2a2a05f5403799995628a52295

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 df5365930320b7a9d404cd6f7bc13988e28355e812aa42e21aa5c93443dcdd2e
MD5 33a4e6ed753807ede84c73ad6df8f5fd
BLAKE2b-256 567a78684c86e9bac0e2dbd7122059d212e77248e010074b7fb3a019fdf9e519

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 812b8c34e88a7d9615c604f1a0473a4e6d664aba94086bffb0c55627f9e3fb68
MD5 8e021808907ef4e23654157eecdf5bff
BLAKE2b-256 82835c7e3ecc1f7de0bce337c7224efe3c0fadfd27e1d18a332be46c04cff529

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8ea8d85c3c9afa4ad51b6644d26516d43493f44c2131c12a2ba959433f4417f6
MD5 1fae8d39d639ab1dcc9b606aab330f5d
BLAKE2b-256 7d0d09a2e65b041559a1243c54cf19288ebec38e000c992c721b149e63545ade

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 20aa422769af9f72ca41d83238d4a3a008d6cd74bcff0a08befb11b0018d6aa5
MD5 8e3b75e5e1589bfa0fd6da84c63a9946
BLAKE2b-256 3c7eb9c78d267900b982e7fa84dc193e2fb334114e36d8ddf0c8997f9bee9276

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4d2ee049997d3aa2e714489cb3c34864fb0f25786e7a4ff04ac9d82af58b453
MD5 6d3b003b1bc0c712fc327d6944978572
BLAKE2b-256 8af6383764f42866a0150da59052e0a5ba9a29a7173d3f9387039d04fe4efc6c

See more details on using hashes here.

File details

Details for the file backports_datetime_fromisoformat-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_datetime_fromisoformat-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 403f155deecbe94d43d0679a74abb5c9ac441422a9ececcfde030fb133865659
MD5 50217af02f2e2ed2fe11acc34206ca16
BLAKE2b-256 5f9059fefd63778c5296ffd0f3f1bfdc620b198a022fc2881338c10fc03e2e92

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page