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.2.0.tar.gz (14.6 kB view details)

Uploaded Source

Built Distributions

fastdatetime-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (972.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.2.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.2.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (510.4 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (974.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.2.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (958.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.2.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (512.2 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.2.0-cp310-none-win_amd64.whl (418.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastdatetime-0.2.0-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.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64

fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastdatetime-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ x86-64

fastdatetime-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (907.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

fastdatetime-0.2.0-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.2.0-cp310-cp310-macosx_10_7_x86_64.whl (510.1 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

fastdatetime-0.2.0-cp39-none-win_amd64.whl (418.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastdatetime-0.2.0-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.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64

fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastdatetime-0.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

fastdatetime-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (907.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

fastdatetime-0.2.0-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.2.0-cp39-cp39-macosx_10_7_x86_64.whl (510.1 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

fastdatetime-0.2.0-cp38-none-win_amd64.whl (418.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastdatetime-0.2.0-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.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64

fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastdatetime-0.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

fastdatetime-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (907.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

fastdatetime-0.2.0-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.2.0-cp38-cp38-macosx_10_7_x86_64.whl (510.2 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

fastdatetime-0.2.0-cp37-none-win_amd64.whl (418.5 kB view details)

Uploaded CPython 3.7 Windows x86-64

fastdatetime-0.2.0-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.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64

fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fastdatetime-0.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.3 kB view details)

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

fastdatetime-0.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (907.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

fastdatetime-0.2.0-cp37-cp37m-macosx_10_7_x86_64.whl (510.2 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastdatetime-0.2.0.tar.gz
Algorithm Hash digest
SHA256 82d070ecc0fb17c79783a26cf3d514b14517a9c78985770acbb13aaa6fbc1ba9
MD5 4c6d9e119efe87773d9aae4f62d94303
BLAKE2b-256 1381a14e2c7aafb4a9d7ef396713ad9d909a661d8f9fbe3a6f706a069991eb4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7074a4154f8e95d02eb3c3e85de2977ab6bf32f52abcfaf115c61389036b61f4
MD5 dfcbec4bfeb83ffebba60cb035c51007
BLAKE2b-256 0daf236e4f762d4c1fbe0a72c1f5c82f9b4ed3405f76e35e92043df49a2e7790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 48f4ca223799bcd56bfd7a82c69b33b6435667b3591fc8efa0d28e2df01588bb
MD5 ec0d43d7eb0d06dfb2e286cc16c5a1f5
BLAKE2b-256 887ab827437f963108e77421b0f4528b63f75278ff112d0e19a43315b36860a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0423b05bbd820571f52735eafcc5a2df91a9b08209c02a1d2ca6335c53c165c4
MD5 a75901014ba39050da818de8486ab352
BLAKE2b-256 8d942996e1da18ce1b367f2603d991628a06007e76a7c3102e2b1b3b44319bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e35790f4ccde4a66dec8744ab03490635d600bbb4633e179f592c695776b9e38
MD5 ee2fc9531d5307fc1495c82772270c1d
BLAKE2b-256 8b4fa92741509c2906f2c5149f2fecea8edfdef6650d7c465ff81bbb4de09822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d080fa0d3f2fd355003f66dfe3e981a45c37ac9d959ce13f4592e762fc737b9c
MD5 bb2b2a2f433c0123778c18089ca02c0c
BLAKE2b-256 003a6c9f6bb9abdbd4fc1cfdd68b98e1daef0b0894c1fc46ab61881176c38198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0dfc28340c01b2b97f3838e0412f5496fd5f041a1e36b272710fe1d188e1aeff
MD5 0a2f4cdaa4d96102dc76ddd1a951feca
BLAKE2b-256 1ebcaed43934551d5a63978de05508ec9a8549af76b8e080c6035311ae638f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5b47232c8e8577318aadae710a6af5927f03b6cf2c53984eb4a0f16aa925d604
MD5 79d5b38570dffbb98d3d89614978cd36
BLAKE2b-256 0d78e5eae20ebc0657cee488827188db8d2a986d56d3701211b52de15cb9b0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6610161f83be3e61e70d9b73c95a1931e7af2807ea2e8edb1eac683a39f6d14
MD5 d314635c8fef69cab772e32f8814800b
BLAKE2b-256 10c0160a2f26d367877eb08b7cebe06b1f04687c97d9c9792d6ea86ab1131f26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e829008ce1a42b8a7296a8ec6c75c50f15458a94c9f173944ccf54bcd7d755ba
MD5 7948a4ccc919e562bcffb8ff1353fb20
BLAKE2b-256 520a44ae5ff6f4fcde5ae76b1ba89755a51e5d2f7049429c6deb7691af061e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 721d737b45ff88b69e0cf107cc87d43d608981b3c2e170d59734d11721074888
MD5 047f67887583f7ebfa5509ccb6aa188c
BLAKE2b-256 7d59e04aca939c04b4327c6f16d8cf4443aab391ce71e472a644db56cb650f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ed7966772ab76017817dcab5153a8d204cbb1418b4da6eef9ab9863cdf11275
MD5 0f474329da3fab05af37cad02963be77
BLAKE2b-256 c487f538a649184dbdac0c11fe34df777742aa24f8b8494b584940e08ee62ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efedd9271aac71b08bba7920863c52f75ff98723b9c7d161b590aab8b203b76e
MD5 d3489b384ec004bb4714d707bb5432a1
BLAKE2b-256 cba27c14e26fc6ecaf4f77ad86509a31edd1d78e80c2d7c7773506415ffb8ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f658ac60193e686c9ba068185cc23fbdeacf4c8f96679623d4d1b96229942b23
MD5 62734125148a6e9291c07e605afc2989
BLAKE2b-256 20c184f3ccd0ef7e6ab147e9e6f18eef21cde424d0a01161230df5b7d1921531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec7f7460262ba94f8de78052eeb8a55b7bd045b3ff0387edf488b8b4ee0967dd
MD5 abd13ff32e0d320591615dcd8ade7544
BLAKE2b-256 4d8e00d7a8e20dda210c9d5260fe200a058f1e1a788bff86c5cfdae24eb17e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 611fa545f8ea464f743affd714ebb09a12d04c541762f5ec674a90ae564b26fa
MD5 5e28c8c6337eeb1261255e0b19c7421c
BLAKE2b-256 35e373fc5c8de96ac044d6812240cb4f3751e2a11e12781170be75e6c5b50afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 af25c78cfc5d0db4b0690bd4bf5ec2184346d76807f992c98e7a4073015506a6
MD5 82515f136c3eb099c750792d1888ce19
BLAKE2b-256 e34745ec0d197dbf57430cb82e16ad40c634ee22efa2cab96aa8d2da27759000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5e62249f6135be1690d4b5ebd0ab6c91837ed18411c318db32d038a308eea7aa
MD5 fcd512cb37542a901766206a084c88d3
BLAKE2b-256 71e015bf44e472f14a90b94209f33c79f18a3cf9d1e1a260c718a423ec0da4c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3eea0c68730d28fb5f6509d8b6b54d54bf4dc69ed5c1a3998dfb4e095fdb094e
MD5 65a8527fc75ecd3f7ce97926a0469ebd
BLAKE2b-256 2f319afece32180390527aad7547c1e94ce57510e5f2a2d13602feba0b20e9fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1440d5b1fe97de66327abd99e824345b33ffcf400eb1220df4026c931e360587
MD5 7db87fb4974aec27525478cad5a325fa
BLAKE2b-256 0c8f9efaf7f9d92dce991347a2af96c0699c073c554b04aeba7b9c04e3c6ffa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 8e0346b03aa898e2c884da7f6734dd9dbbb746da263ba8e442f5e553802a3e77
MD5 2761ba8ab15f4d75e37f8553f8e7cbfa
BLAKE2b-256 831355713db6e1155f6cadf0b3533c25aed52bd63a4ae58b554872ce46f6eae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a713607a9bebadede4dd45b871f08ca7f41fc3ac6ed0769154be9a31910745ac
MD5 0c123d4c3fdd3376a0bd766acad4250c
BLAKE2b-256 f8642b51dbff2d462350171e21ecb5bfb81ab832d3f65f71b201f750a470bc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5516b353bb4c9b1233f06561314066c0a3be41c2904cf11027df758ccdc6015
MD5 723e81778c575483c7b51b784ae5ec77
BLAKE2b-256 3549d412b7549385ce5355d6b6aae16ae6a382408707d0420d4444082b77d14b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d65f769bd4db14c3af53bd885fb381091ce5af11919818eae6a8010831f54f7
MD5 3ee0d5a56c965aea28b40e36949eeea5
BLAKE2b-256 313ccc6f334f4e57d90ffcf0ecbf668ac3c7df3e168df354359235abceb0e5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e29d544197081ef942aa0abb1c4b47ae15c0646660713df9df4eed1bcfa8820c
MD5 d35430d9b614b6df7b971e81ead8ad1f
BLAKE2b-256 3d2f3118f23822a35adb9e244789cc26dbca8b7d5d17f16dcceb2fab707ad8d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9f6903454113e88376e0afd191ccfb3d660a92f65ca6c24e7e0964b6c8f07e25
MD5 fc15091d08a2eb8c576d3aa1bef6368e
BLAKE2b-256 3a8bd4cbb11b6f18c5fed28b31a8913196b3099ae07c85ed676d2e4c1c06d498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e19e9c7018144cb7b7fbe38a14380ff59fe3cb89008ef96658f3f818d5902d75
MD5 3e8a11972c9fa408626ef10b417226aa
BLAKE2b-256 a62650d0493ebbbb207b2afac36f9786409d99512282639dccbeea062b5d62ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 04d014de7fb3cd1de6c8bf4933487d146a1a4325b02364c3498590ed6469caa6
MD5 c56ce546613a4c6ac4d3655aaa7431bf
BLAKE2b-256 b41aa4fe76f65634c73a4469cc660bf51cd3874dc1926c587cae62909ddf61ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6870d23fab6d3d8d3ade3923200c5d228638b4b6e324819281a950e47d193d06
MD5 c912fe074155c585f85f6dd192dea9e3
BLAKE2b-256 686496ed5bcb071e5f60ddb22debdccdab1d7fb8f81bc4e27b89e46c9ccbfb47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ad6aa81718ebf23968e852e6e35f82a89076c55ffb105e5794fe13fb426e8c0
MD5 9867853416b332684703a02e64da57c4
BLAKE2b-256 f2374812a461895db913b86bc8c7c67e1ec96d10660837846f138db47f3be139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 10d78dedb86ce09aeab80fb40329d107ffc49cc4702bdf4d0fcbf22a5e41fbbe
MD5 d9a7ea31d21a9250af77dbfed08fa01d
BLAKE2b-256 3109e4fa201b269c5bdcb0c9d545f6c043ee49610dffffce732f661811a003b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96b9786adb3b2dd1122ed0cb1ee3323140ea84fc968a66ae186567315e285dc3
MD5 d54bab4486877ecb0c4a0e149d906073
BLAKE2b-256 d344e6d2d31e6f6695b844d9c81245f9f2dcfde7ea52e4cf90171306f179ab22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 304bf84e0b641454392822b93d0613fdcdb395fb4e53e902a086bc8751b3d4b9
MD5 0a98b74e4d1692607cceb22308e7958a
BLAKE2b-256 a05465f2d665e1564522c511b15ddec22e8a15d663f11b3345727d9c69bff979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef0ab80902b913b344a452fe89e2d8eb08032123475c338a19091e50e63ed4a9
MD5 199bc84719d293eb54f4447c92c2e3f3
BLAKE2b-256 571bbd2966c25d15b33f65f66dcb8f79f2af9659c52ec6b9edfca4c455500ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b73497ce7f4c7b63a8c9a7f6c814b68b21e94cce68ceaa6cc6f52725497a75e5
MD5 eac6af209de8ef1f1b01b7fc325edc9c
BLAKE2b-256 089db1dc3d9f6ef574fdf25000da74cc58c544ac60edece8ed8b5b616da013c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4e9ca961b293bd7d564563632d34706ecf2ca34e602e986e3e4acb183236dbfe
MD5 1f0afefdc3dba8c309e2201f8d62ae32
BLAKE2b-256 01a7628de458e47b3d5cf0729d99a291f3fcc92cba2a84b2d55816c410bdd39b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b5d433e97cf44e64c4785a9341519160322bcea22274d0dc72795c9622b91b5d
MD5 fbb41d524d516f5a44c81395d11a993c
BLAKE2b-256 32465e6473c06d29a4c32434a7bf58ca3374946fdbc71e29d1b9e2e11d1107bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 95b20ec4003cd55c327d5e0a3f2597526b0d61df799524ce79abad7b9874bd72
MD5 56c977bc3ee31f5845f8eb118bff7fa2
BLAKE2b-256 3c5ebc6165ae7545de7af1e8683b236f7bd2c3b7f02f09c7803d062667d988c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fc8aec86971827391b6a917edf4f5f5cadf16e0d40914dcaddf28351a9cd713
MD5 fdd66f504c068be07541a349bcdecd20
BLAKE2b-256 c961060ac0e8b60fd70702b79da2627717206a5d26c691d82d1ca7c8dabbfe60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0581e171bfb0f658ab3e9ad952207e0cc7fafa7a846dedce7befe2fca439591
MD5 31eb5cf6013bf8321db08ef9046b3dcf
BLAKE2b-256 78632d405a6d178343ff024ce7c618bc09c0dacb54057d0bf3a37648ff74b96c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 5d75e9eebf26379821b5984290672631aa91d9966190304acd63df337ec8f48f
MD5 fe7cf7a225201968b73c6a54cce6a4bd
BLAKE2b-256 ff387a24c3a172da40ea6cef381c9f4e059c0129efc7cef1d295874f8fba648a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adfa996e93911e249af9774b4a8651919a377412c66846771a1de4a3dc1bb6fc
MD5 35aa853235ac5832c937916f1a2fa396
BLAKE2b-256 a038f142673a4a204ec050d2f1684c319aaff5fb928e56d233937c2da5d9bce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d6509e34c631e9e1ed32acf573e52a36f459a58e0109bf6296b9344f669d7af
MD5 bd23863ef6b51cd8eecdb727ce75dd84
BLAKE2b-256 ee6c82fcc09410de916b385fae256af08547f17afc233ee9feea0f71f59c6768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f9590dacc1ad10f7235592c25d36345d1ef9eddd89cc1567970af4f7f7c4da78
MD5 a48ce87997a4c2a8b95a10223aa9be76
BLAKE2b-256 391c8b64de28f75bedbc63eb94c2c4cecfdad23aaf1501d7df50c6bb08a76a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 846595f1f8f7f91550416dc440c46062c70e39bf45db7d5ab66ff549c6181ef8
MD5 7954f6d5690a4b416fe012adfa2f55f6
BLAKE2b-256 d2b47f59f1bc5a5dfe5c3f027a9a42bd150e4d00254a2f20cf367121421744d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.2.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 29cfd879ec723e470a89d87850f1b1bb05cf9503b8c6cc0adc7c0a60aa82a20c
MD5 ceec89f677e7fd2608e6af119b4bf14f
BLAKE2b-256 74db7085e1363ac3baf1534f73fbf1450c0b6c5e9c6faf47d941293b547a3bf9

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