Skip to main content

Like datetime, but fast

Project description

fastdatetime

Like datetime, but fast 🚀

ImplementationInstallationFAQAcknowledgements

PyPI License

Implementation

strptime

In the pursuit of a faster strptime implementation, two backing Rust crates were chosen due to their popularity in the ecosystem – chrono and time.

Both impementations are exposed under the following methods:

  1. fastdatetime.strptime (based on time along with time-fmt)
  2. fastdatetime.chrono.strptime (based on chrono)

Initially, chrono seemed liked a drop-in replacement, however due to subtle differences of %f specifier the format argument needs to preprocessed to conform to the Python referece which incurs slight performance overhead as the format string needs to be scanned. Furthermore, even without this shortcoming, the parsing was slower compared to time.

What's also interesting is that time doesn't support strptime compatible inferface out of the box – fortunatelly time-fmt does (in addition, some fixes and new functionality was upstreamed to the crate).

parse

Oftentimes the date format is not known ahead of time, or it is not possible to infer it from a few samples. In Python, one would usually opt for using the dateutil package, which can deal with all sorts of edge cases and is very forgiving, however these guarantees come at a cost – in order for the results to not be ambiguous but accurate, the user can tweak a lot of options (is the day or year first, ...) and has to sacrifice performance.

Enter dtparse by Bradlee Speice, a rewrite of dateutil.parse in Rust. Going full circle, fastdatetime just exposes Python bindings to Bradlee's excellent crate. This yields ~15x faster parsing performance (657 vs 42 Kops/sec on M1 Pro).

Installation

TBD

FAQ

TBD

Acknowledgements

License

© 2022 Contributors of Project fastdatetime.

This project is licensed under either of

at your option.

The SPDX license identifier for this project is MIT OR Apache-2.0.

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

fastdatetime-0.1.2.tar.gz (14.4 kB view details)

Uploaded Source

Built Distributions

fastdatetime-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (963.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (950.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.1.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (502.1 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (965.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (951.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (503.7 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.1.2-cp310-none-win_amd64.whl (421.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (966.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (995.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (894.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (963.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl (950.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ x86-64

fastdatetime-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (908.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

fastdatetime-0.1.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.0 MB view details)

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

fastdatetime-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl (501.9 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

fastdatetime-0.1.2-cp39-none-win_amd64.whl (421.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (966.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (995.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (894.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (963.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (950.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

fastdatetime-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (908.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

fastdatetime-0.1.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.0 MB view details)

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

fastdatetime-0.1.2-cp39-cp39-macosx_10_7_x86_64.whl (501.9 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

fastdatetime-0.1.2-cp38-none-win_amd64.whl (421.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (966.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (995.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (963.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (950.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

fastdatetime-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (908.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

fastdatetime-0.1.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.0 MB view details)

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

fastdatetime-0.1.2-cp38-cp38-macosx_10_7_x86_64.whl (501.9 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

fastdatetime-0.1.2-cp37-none-win_amd64.whl (421.4 kB view details)

Uploaded CPython 3.7 Windows x86-64

fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (966.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (995.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (894.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (963.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (950.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

fastdatetime-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (908.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

fastdatetime-0.1.2-cp37-cp37m-macosx_10_7_x86_64.whl (501.9 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

Details for the file fastdatetime-0.1.2.tar.gz.

File metadata

  • Download URL: fastdatetime-0.1.2.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for fastdatetime-0.1.2.tar.gz
Algorithm Hash digest
SHA256 82d8bd1d8d6ecfbe2c98701cb5b1dcc09291f42360a47bf6f15989f8e399fbeb
MD5 114f538ec969cfcf1c0c79acd5d55b12
BLAKE2b-256 f3deab3c0cc020e4c953688c938777245db669394602501b2fb0e5f17de5b8e9

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 550bf3bf9e23969b431d227f66caddbf0c67b9d88ccccda87af61feb605aed44
MD5 2e0f1728e31c70bb90d5976de52fbe37
BLAKE2b-256 6595b3879c63382db05d4ad8de0f57092e739814d37fe816b107903be6e2b9d4

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 725bdf49e9012465e8d212c331ae7e4caca8c814c500aba42087c7ea904890af
MD5 0b771ae64ce1e08fa4f58ee751235a5b
BLAKE2b-256 5b09a9e548877531fb8727f547af666e2b949267d845e62a244aebd3ae2b2190

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d221e96b22c7644189d13df371e67b44c7fd7ccbdb671c0bc6edb7551994b4c4
MD5 76e851cc026e3b7aca483a719eb55551
BLAKE2b-256 8cc94071629338a153799b31e3b95f70f4beb062a891ecf8e9a98dd2709199b2

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53f3919a578097b968c38540e796e2fc1d4537d1f4c8fe0e1fcfcdb4293fac31
MD5 2fb0ca9876dbc0f5f1e7c2786c6f6bbb
BLAKE2b-256 85add71f91ba00ee9d3973ae0bc1ab0eab8af5c5f3b80e8f6c91e8148cb2502e

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9eeb53bbfb763b7b3313a381424e38cd795147a0f6c05593778384226c9e924a
MD5 8b159d1047b8cf08ef8e35a5d2db6328
BLAKE2b-256 9020cef9509ccfe08e56de1520a52ff5583a57e9b765c98a21b98e77e905f3e4

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b03e9779a953e2c42a005e792328853c5c6a2fe88f7d71c44846527573e40c74
MD5 4466fb64064467b6d2ba7fe745470bf7
BLAKE2b-256 39a5d012196c328a0f938ac3ad30429fa6320e4c99dff311c4953d2f26171130

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 84fb0c0d8b449eb7a25f0663270fb5b38620dee18ff869901fc4ff4ce9116e2e
MD5 84175be4ee214c82d373c65e1be5290a
BLAKE2b-256 91540a368204b7af7230e8a46e1859dcafcb8c3b36d17b1d934829265f57bf56

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 563eb455776da7ba913b452a96b47a6f01111e6c35a2f1b4ac89cbc4e3b3f6d0
MD5 3aa70aff29a393fb555f371ba660f042
BLAKE2b-256 5e76134f0f892ccb1f9be05df9043b8d77d084ee925e9403a875d546734fb2a5

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79c7ec0064ba7be8164c9ab670814825a067ad6c6278f1951517f1008372b869
MD5 ec3d575c4d54e98c8f27df914b1e4858
BLAKE2b-256 b271e1cb15f42ba5e86f45cf4462b291ebdae92e4140615b73bf947bdb576cc2

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 5cdfb414ca168d2ae254bc427da3a6c342ff67bc7d2217af792fa2c005a35b10
MD5 910d4dc5d5a9ce57bdfbc27fe11f7798
BLAKE2b-256 e3a35862e0d9e59c6f9681c67955991358088673b9e8032245d38c4a27f7c834

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e501b0e376f6a9d7d505ec3161c66254c666076e6c9495714c4f367e3bf42978
MD5 64770ccfcde6deba3f9eab8662814964
BLAKE2b-256 8d4ad513a5988a630b6dedc05763e68d5811f0dbc12843cc34744ba378a2ae74

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1568ea4984453f460f105bc425b4a81f38a8bc15768ce70f9b71b1b0aa7d12b5
MD5 43d7ff181248ee0a13c8c0e13723bfc3
BLAKE2b-256 bf312497bf6c85e6a90afdd4b9a003f467e9d7cf7c5f4c48192af2ae5e451440

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9e0bf6ddf2a7f69285b317cd45bf9b86d7176470396b776909bfaaa93883f0e
MD5 ffd7b57bfe531e8fe741db95fb2382a7
BLAKE2b-256 159aa4a4e796fc556a456837ea4b0fb38639ad9f1dca09c5911308491612ee74

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fffa227ab40c519f38e3556cbd7fba3be788a9caa4dc1b47924bdc06d9e18bb0
MD5 df8e60986d7736e13fbffb7233f36226
BLAKE2b-256 ac0f0c318c0873ebe802c1bf22773f759fb8837960ebe952ad3b2ab7bab6645c

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 21b419cddd170f9eeab02d19a02d14057b154a201c2d0d007f7b5b64f0d3767e
MD5 2c1626ca037588b93d5a75c8be42db8b
BLAKE2b-256 7e03b6e9dc22305323560d07e0176a66d65bd78fe1a6defcc0e67c834075179d

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2132ca9c562188a1f82dbe69f5bbda98fec7ff1084a677ba6fb904a1f567cc0f
MD5 aa95d8a61fdb45a233a87925e8875cd6
BLAKE2b-256 47005431fc0b8f416697134a56d778006459c4af3d716170d54323156e8af8cf

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0f4f35fd2f16992131400f3e61c9f9ee16ddd52cef562b266e2f81a22d3f03d4
MD5 36062fc0df3f343449c6dd2fd124f916
BLAKE2b-256 5ecbdf6f32a35eb75f9f11cd621419ea72b40e7f14c10062b7560bb181909dd8

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9c018fad4c41c56d89da277f8550df9e5b1a56442801ad9e9458f22bdd757db
MD5 bf7910f5fde792bba287ee93eb5686b6
BLAKE2b-256 5f1dc2c0c0b4a396e62f840543417c787ad1c5d1ee9745082245173ccc95984c

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6320a38f94a32f695eeb6bb4afbae149203d27c5a571555027a300bdfba3e52
MD5 8feb68f68b1cba24d8eae437cc26d59c
BLAKE2b-256 98ffe6138319e61ac90bd9b13574ec088eb68fd711992b52697d12373e8f1b04

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 62812587b8983e0e417cfa81380735de823f4df6b11727b7c32a553e6e27c535
MD5 832cd04772c4cc0c2df0a662ef151e44
BLAKE2b-256 150074592294e4754f6fb1e832f016f1096eae7f2499ee23a33ac60843bd373c

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 052c49a51047af755b98465a44a0538edf739521b4c4da77086b716d7ffa6227
MD5 9c0118beec47be85f7adbf8e0a54782b
BLAKE2b-256 cecbd95643fa39474e577f9d511a188b31ba93b13f30c958fbaccee2b3601d4d

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46ad627f316b9cab981f13b6d4f5cafe05c7fa177a520d85695fba74b95ee52c
MD5 9efb1028cfc196335ec2ccd30dd1481c
BLAKE2b-256 98088a25b89b5504788876afad453e875484ebe976da0eebb6591cae59cd464c

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd90daa2195b63383599569a3af34c125b0ec7823091e6e2f2c065b588e25360
MD5 7e7d44983bf8f6a85d61dc2484fff4e1
BLAKE2b-256 7bff305cba21305e672b208022700ed6a8c6ae74765094581ce359701c3d0568

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa1eefb0589cf544feae478984b05bf1d523a37d10049c2774991acf0999d1c3
MD5 5e278b5b1f9f84906de49f02a7b5d700
BLAKE2b-256 5b2d033b96c29525d58dc7b83a8787aa97da169155fa59aa151526ba8669d978

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7f90cbb20b164faa6ad439278e3f51052f21f2865cd13ca5f4da54a79d9a45db
MD5 39785d115314220fa244bde8132ededc
BLAKE2b-256 f63d26a3d622848f076303a85c6e606ee4102d58e9b4b803305c0b04d8e5f532

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f1d08c7e7734e6ece080a7f4b4c517adda63dbda6422bfc511c655de91bd86e9
MD5 245f75daf0ccf9fd0971485f83beb019
BLAKE2b-256 f4051a79847ad5508ab7d4183d7bc6dce548d9544b15f50f278314b60e5df998

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c05905aeac77e38fccd815d6a6563e50a5d015f50c6fb58ef10bf433e9d70ce9
MD5 d0b85684eb4321d00c1771275523374f
BLAKE2b-256 05e79bc9a1bd1f49ec0aaa8bdbca57b5b5feb30f5e3810d37932c06d7c872b7c

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f5ec6d53d36a716489b49b2c9b6816f6eeba2d22306006e280da6e215ba1187
MD5 13f3fe80038dc12a7c6c232ad7e836da
BLAKE2b-256 bea7a09940b9c869954e9e577e229713ab006b66914566b3bcf5700f0850e6ee

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 987dc353290ab17a452ea354266fffc6cb84cefc36647101ff722db02b93f575
MD5 9b7306289f4946a1a88b2cac59850b2e
BLAKE2b-256 d0af62b5ee1d3d8859f048e91af43b882e383d6331949075f830cd164a9763fe

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 584f3da1a21d4b15718a6ecd6d8af286942626cf41e90f9490a0f7b37e697d30
MD5 6c1a2e2535a615a1932af4be5b42146c
BLAKE2b-256 1a4870ebe7339aa42ad87858fcc0aaf43fa852d8c0b83610aff00c9c0ff91e13

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3556fbfc7fb8cdd3a2eb361d5273e696906b18ef8eaa332e832e9e270787dc39
MD5 7142cd6a1a663225b71cf2705b5adf8f
BLAKE2b-256 906469a9f3c96e6b09228fa1097f6f6dfa371d3170a20af421dca9721fdae8fc

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1af6c06f0faf1cce938bca5ce78b11e284e02f40f58ec4ef5aabe5288dc9095b
MD5 31216110133698ccb2532321f68cac6e
BLAKE2b-256 235f39b97795a7c0c7b2b180f6474f44a2031a909c964d1a892ebc6b43002f68

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b307ea626369dc7577d47d0530fddfd56074b9a107df790a46420c37f5638a3d
MD5 e673fe917dc3c2627808422912fd61bb
BLAKE2b-256 dfcd2b24a659d1ac01f8234d04fc2982fd39e5ff55964290facd5c9da5c0ef8a

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78a89485d9443f526a00c3af221fcdee5a558080f050f9c5515604459c6419de
MD5 50b505dba48608537d0b293eae6657ce
BLAKE2b-256 030da01d9c51fd8f0828ee58f1c3782c7ebe89571362c53bc571f49725feb8aa

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5060ae8b056301edfff6cb235522defe6c6fb034a90cd6134bd0ce492223de5d
MD5 40dccb1b7569a71a84e0b0698efbb964
BLAKE2b-256 a1cdc9685d8a421bb245e1862f98a890eaf44641eb7e17727352ca131082a57e

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0eb56f2cf548601858bdb54a386da401faa0cc95c2c3cd966a64b1d65a557169
MD5 f4f227fd31fb3364626e2529aeee0f9e
BLAKE2b-256 ae52646900d9cd4462d95a1b36fe0b47df77ba13cd432977d7f4e217656b32ef

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f6737de777de34b6d1ea7fc1c2f3a2a2ae1c301d2c537365ea479454652c92f
MD5 0adfbdc27290f3fbbdebb52b640d5dbc
BLAKE2b-256 85d7eecdbb33281118a264643d51f9d34d959d58653854935c5b1fc9ac0c9297

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a3c3ebc77c5aa9690273bf8337045877e1ca7e77e569eb1a7ab0744be166d65
MD5 f9e0cf200bdb0da3e65a39eb5fa088dd
BLAKE2b-256 4d3f98a6fae1ef90cadb575170facb31023e3e6a3e73c4ddf82aa5ddbc7880ab

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43f605ef538efce0dc1002f4397a257d4e8e7c37523e8364d43f517a87abe833
MD5 952f5919dae60badfe695b7cfe51eccf
BLAKE2b-256 78622d0de9310bc66bce8a2680039af9465164bc03e56f49cb58196470c22a66

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 6cb1a112df16e1ab36a123ab8aed5bb9304c83f618dc2394f5595c30c9b7bb83
MD5 2f42051a4b2c10ef6e4e0335bd10db59
BLAKE2b-256 4049f9a64a4badd53257170116c8e11a1a4bef26203e4c241b44526afab89ea0

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecd702fcde4380b68af2c84b21d66687de64ca752ec0e99493e32ca582cb0b2f
MD5 aab739215378f9da82ed60da58e447b4
BLAKE2b-256 0302ed6794e5b118ebffe0a4befd50fd32a8ceeb816f926f211df9ba37afa5ca

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffdb0267b7a50ffa1e28d9a52149b08d887df5bb044935c0cad7149eaae6b673
MD5 60b8ceaadd0c5f65302e94900933917b
BLAKE2b-256 503642bd24fb248dd0cb7cc36c71bfd53a32e5091631f27f11ea8824f32232f9

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 033cab8997ad4495d90370f0f9bf9191396f59523189e2e7f09fcf6c0491a5b4
MD5 32de52ccfaf619f912d3077890f743fb
BLAKE2b-256 bd197b0e596948514d53044383aed5085cc2ac9db805765773e392e901f0a18f

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01a877fbb963a8c66c76ce10c392aefb1fe1548ef239258877dfbe4b299ea919
MD5 3b4d85f1796639aafe85ef16541a8250
BLAKE2b-256 340b62b4325d96ebbe52386210382cf9b01e1485ba7fd2ac2613d0f221f2a09d

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.2-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7ee5400abae8fe4e981826f4dea865e84c2c44bfdf1b99a96e500d78b413c3a5
MD5 f3b648dc0d9a36fe295ce665ac4c6c64
BLAKE2b-256 1e49283390ca3efdc9cc9f5d9047f6d7ae560b108266a23ce4786a7e9b6cb859

See more details on using hashes here.

Supported by

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