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

Uploaded Source

Built Distributions

fastdatetime-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (973.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (510.6 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (974.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (958.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (512.6 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.3.0-cp310-none-win_amd64.whl (419.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastdatetime-0.3.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.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.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.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (973.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (908.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

fastdatetime-0.3.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.3.0-cp310-cp310-macosx_10_7_x86_64.whl (510.4 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

fastdatetime-0.3.0-cp39-none-win_amd64.whl (419.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastdatetime-0.3.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.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.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.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (973.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (908.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

fastdatetime-0.3.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.3.0-cp39-cp39-macosx_10_7_x86_64.whl (510.4 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

fastdatetime-0.3.0-cp38-none-win_amd64.whl (419.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastdatetime-0.3.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.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.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.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (973.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (908.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

fastdatetime-0.3.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.3.0-cp38-cp38-macosx_10_7_x86_64.whl (510.4 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

fastdatetime-0.3.0-cp37-none-win_amd64.whl (418.9 kB view details)

Uploaded CPython 3.7 Windows x86-64

fastdatetime-0.3.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.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (970.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.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.3.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (893.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (973.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (956.6 kB view details)

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

fastdatetime-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (908.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

fastdatetime-0.3.0-cp37-cp37m-macosx_10_7_x86_64.whl (510.4 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastdatetime-0.3.0.tar.gz
Algorithm Hash digest
SHA256 7f37b4c4f12614e233b77beba9cf500fa5793e0b8b91fe23515c5f20342b074b
MD5 db7ffdb6e8d097cbff0736584a128dec
BLAKE2b-256 937a0227040b739a0461645842034b31b7776b6f46b26d58041bbd417934fa1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a93e450cfa277f59d395c633396ea04ab98d14224cd726a1e05c4590c702aae
MD5 f2db69ed402e9516db5dc4c99b86a9e7
BLAKE2b-256 457ab4c07504b3c082505eb8c7dc50bd82d80834cf8495fb92db8e11d0990bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71fb648836193a4d9dba6f39a81e6ea613366457e270cb298d7ff68fa648fa9d
MD5 6be41c6ff326951f5977e35c89de1297
BLAKE2b-256 584efba358a4b3009bc147da76b8fdeaf6020a49fd2880aa9571ab360c311399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3af39143e76299310e4c8295c083a7484b5cb1614a348200d0ac669c2b9eed39
MD5 342a2a240ef902805acf0cecd3181459
BLAKE2b-256 a18fd6473798e2ffcd19ba8bedea8bad53dc36b8e4ebdf1f036370bb9a0af496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8c431f299448d323a7967a24e2cdf0051b15d2f74e6536266c640b34326e053
MD5 9013bb92e7b2e19a5631f0f5fd74c4d6
BLAKE2b-256 635f369eb968f045e057922d93ee0487e0eab905c9f2d422f5a78599e0b76f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71731c293b45d9287d05b07794e5caec574908213f47fa033aecf0be2b59e2eb
MD5 e5bcc3f3fb41b34c82503ff1c3c4e1f6
BLAKE2b-256 033e02cc6b81538b7ed3caa030a90278d337a0519e34b44ed7e4940df49639a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a99c938e739bfcce8429bee0f7b35a6ae3f1edb4c1b4add73149c4db301bd46c
MD5 3440a7b75ec599f77ec9e49f004d0b3f
BLAKE2b-256 97f15e27a9c4f312c0db22ff2a8185507d1fa27d5ee942ccc6201323f6c0d2fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f1b2f767b2741277f21d685f27e3d1e969c982be22cfbcf2de1e90d880221f54
MD5 2ffa7185b65265fbf5f9350aa3beb25f
BLAKE2b-256 f2e2f55fd1da5e6c8b11867a3f9baeb1d6b02ac53cc767ce2eefb8c166acda54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5dd8dfb37d7366ed7e1ec0c8691e4f6fe8b88d98770fa21f2f1d42642748266b
MD5 6bfb3aab263b176f15da42ab30073562
BLAKE2b-256 ba488c17bf76cc3dec4b7df90bf88bb771f2aa4c72720ee6748ec6a24455f529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9164be2361f2e0f3045ec50f36c8db4b67c23443af9746fd0ac15656f622c340
MD5 a18d99256e093df9ed9d3356cf7057bd
BLAKE2b-256 f2310bb74ed669dfe94d346c38c0a873e51f24a4481482df646a0d8aa5ca8d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 1e52bf4c8962ae1ca1b48e731a3ce6b7bf097b7a3d4b191a2494322747670c28
MD5 e0b3b913b802add78dcb684dc22323b2
BLAKE2b-256 b1b46a9e872a806a5eb10945662586ecfcdbbf2e7a26111711dc6f9b48595de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c80851996fc9881061191738ddc6bdc2b69d2a18b319fda68125abf1c3a9c498
MD5 84cb747acae6e2dc6bb55297004a466e
BLAKE2b-256 775fc5722652af551beb6063c9b28a8a92fda9b64bf3a8d1d79da4d2680a275f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94740025dc45a4064deb2ff723b98c482714422d283a5c4678fa93011b36d109
MD5 b6b7aec30f683be0c6489f4b77e56f5e
BLAKE2b-256 e38556d1c75307cb9f374eea6e516af0220fb8d7702ae390f019f0618571fdaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41860ba17e86b209ba459094739c1c71d8057066a443e200cda66db575661c21
MD5 939874ffa79619b12a1823b40e6b5cf6
BLAKE2b-256 77a0e6de646575492ef466bc5a29ab326725b89e378222bfc3b197c60129ba11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1d142bcc52c2b8553b5c9ac57e71c48407a19ac5e7fc59b71eae30bb15474b5
MD5 daadcbc999eb998371bd8b700ff76bca
BLAKE2b-256 45bde662c23c1cd2f0791a58fb2ac46cdb9f107d36aa341d29c40aaf6c3b5bcf

See more details on using hashes here.

File details

Details for the file fastdatetime-0.3.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.3.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8ce10edbd97cd6252bb3e36efd7219bccf3f78b4daf6b1510a409db2959231a5
MD5 41c513d2323f40a47c2c23b7eafb0bec
BLAKE2b-256 79465c69eb16bfcdbf35c344ad44f9c13797315449d9baaaadea9f4bd9a283ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e45fa0cc97544f1264458948c84a96ba6e1a695d69aaef414bd2becc4d253eb6
MD5 70cfd200c8fcf11e57c946dcef3b528e
BLAKE2b-256 4892156705f3e9f7ddb27c554e712117ac2280206c07c91b2c33f5c55fe67cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3fe3f0a738fb37ba1ce22d8e0c691a225f77e7e2d41f987cf3f71b1b01fa48a0
MD5 bca2a840caee176bb9ea3cca24c2f4e8
BLAKE2b-256 e05e21d76616a046dfb54d149de53db9dd6f8ca806548d6b3e34bec93cab6c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3748c90e5b35a19401c0b63c50e7362d57a7dbfe28cbfb418529377504128d76
MD5 8f536f159e3dfa1c446e8920c20ad782
BLAKE2b-256 7a49408be5d824793c22e121da42af0dc5b32b7f94a032a2431ec75f0241a6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 daebbce6482b477c0ec124cb19e675ffa7af96016b489e4c47375a66ac1d387e
MD5 7fd8b4d645bb88cfe95855c85dd4375c
BLAKE2b-256 68ec0f061722cf0eb631e22507d7e190a1d813ba3d814f79a008aa671428e5be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 0dadedd9d2983a6765c34b07eb3388636b9b2ca6240d4f19465035598bc80a5f
MD5 03927720ba95fadc7e9d0f4c2a73bebf
BLAKE2b-256 78a9b86de87bd4ad4499d1e2f957fad347b7ae0203eaeebe3edc78bcefc40a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3571d3832132b1812f6f0da56dd1489cd4a63987c32a9927de98022521f26fed
MD5 8978bc2429f2d73a24502b15ddbccd3e
BLAKE2b-256 1aeb560744599e74446cb4abfd0f397c31161f8d8d4beac2d79d762b76fdceab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5693eb43797a3e7bd45af03941f86188cdcbbd04e2674e3e882348ebf9de4bc9
MD5 9880de9f0f7ac0b43da65606c68a19e8
BLAKE2b-256 208b11c687ba519792b39fca02d910838263a2973e0fb34710328b21bf34ff7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 26925d338f2190978616fa134f91ce7e1881ac9dbd5345c306119b5a40355cc5
MD5 c6cedd7ea4fb5ff7bf5807552df648c7
BLAKE2b-256 7fa286795473f7b462952d29736675e21dd6ecef845df733521cc15cd1708ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 364babe00a6d1f25f1cdc3b2cb144629ba54d838255dda4db84c51d996862a3b
MD5 23c6389ee1aca23480865a87a8d6afc8
BLAKE2b-256 8766df98af11b16eabcf127681b453805482dc89c117c78b81351c8e296edb56

See more details on using hashes here.

File details

Details for the file fastdatetime-0.3.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.3.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 709760164d643491b1533b73f09c4c408410dacd045198c5e7126704378655a8
MD5 97fd4e1908d278056848f644854170a1
BLAKE2b-256 09bbbd97b1bc365f675f638c5541def9a29319bdcd048bcda6b74fbb08f6a435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 727cd18722575c30c9084632aaebc68d7a564f12262c3301b89f45d279bf9b1b
MD5 39a383f5e7baa3dd7f4848d0bfb79827
BLAKE2b-256 7f68eddc79c67765fd03abf44853eb88c83b65db44acaecfa63f5e7a2763238d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ac34438f54f01ad9f3782324cbd2d2729dcc939c027bedc4bea0c2aeb92e25d7
MD5 22900619cb821d836fe112b289c72578
BLAKE2b-256 cf86455785f70ac75d29200526b194049b7ca42d06c6bd98d73f6d47e5827be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff5aef7276eae162f299a1ede23c0f73ed6cbfc2c2d39ff49d97103da409490b
MD5 718f2a7df645ab90464f1718f9e9c33f
BLAKE2b-256 29f98547c35d0e8683c0440b97320fa83230f83d4185fb2d19dc38e997d68c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c227e2d09adc5cd7616d7ac96a6d9099d1967923a7ec8ed9cb4cbaf9a35f4239
MD5 41a64949680e34ead60ff04d92140d69
BLAKE2b-256 d44878f8eb4e871553f7f87323260b6d08bad5f1572a070eafa19644a3500c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 69d6cdeffe95d17d73f5afeff47edc8120a819d31479d4d37b7313ce8331447d
MD5 fba7ba807e120c7c4818617dec1539a3
BLAKE2b-256 486d09f47dc51049db78514d83f290f1d779bb9cadeee95400018b484ed08fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 315e3812c5b847b15f73cdd21bc17c0c824be713a2206ebb5be3aa176cc5b052
MD5 d56651111b28b3bc672b2b4a9ae3d006
BLAKE2b-256 20d14d72d78e5a7743d29fc6cb213a9d892c60d7fb6fd142308a9300aacf0a5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb781e6814335b52b615e7304c411a95b999a4df4e96f1133122c1d9df71334b
MD5 3756c0793eba8eb2ef21d67fda82c09a
BLAKE2b-256 8a6473108b0577e4ec3ba54f2ad1d9b7225c581622fad3d33743475dea09dedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 14c2bdb9b555c0a404bc84892ec2db98f199981bf8915ad6b844e958cb008dd7
MD5 db942674caa2732f3bafdc38007eb669
BLAKE2b-256 79d5c6e2c026e70b2ffce0a547ef39899054eb11d7d023e64a4d44c2aed651cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c76339122bdd7c922c1a194aea3bb0455d248dc9e7f9ba0b556586cdb70d8c2c
MD5 9f79287db4ff0b84c24858cc1adbba2b
BLAKE2b-256 1f89655b0fa8800286003c237d9988365160622c3615dbf56be67a00dc5f6e75

See more details on using hashes here.

File details

Details for the file fastdatetime-0.3.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.3.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ae979f4cc84ac5c3219c7fd5a0818dc2dfc2447b560b274269d7f4d2f84ce948
MD5 983e888f79d9d5177b8cef6ea91c303a
BLAKE2b-256 46c992dbfb9e7b3cddd2e1ed897d85d38d9f508c55b63f78d581a2ce75adf638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 de22188c47a0218e59bc61d6473425c240aa9f7989201a743bb2b07a94b91389
MD5 308bc2cd3770cff7f9d24ba402722040
BLAKE2b-256 e3ddc7fe7304b0acb9eabb3b8050997d66590dac036b7e3e006099f3d43e163a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 874c375c082c905e485d8c411a1e569146d226ee3b246f6eaeba087b0a21f561
MD5 5c0193ccce4187a2b2695df128fa9e34
BLAKE2b-256 cd91ebc11d4a7439f783e7b7fbac5b7d161fca1fa42930dc818e499e24d0a1bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b343dc8b44bdb37a69947521191e47004bdeff3c402d91221166e7054c06f929
MD5 8f7cb8a5dd8563f30ac8ae20f7e20b6e
BLAKE2b-256 e8728eef3d76c2e0b1904dc91f29d09912e689aea9f4f23f15d9093dfa2e3ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d82b2258bbc224a49f97bef2edb7ac4e85eb2e8f5ef99e2426d05eeaa5ee7eb
MD5 8fbe6c77a1cb2b01f0eb142724399e34
BLAKE2b-256 72c2c195e59cb6a1ca19a518379e267d7a47de198bc98c39942d149212547ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 dea2136ff034b1787a65eda5911de039ad96b132710b2ccbed1660b5e6f2814a
MD5 339290a73327132429167aadd7ecffc6
BLAKE2b-256 27819bb034cb35f9ee5809ad54c883bd896620d4dcc2a9ea44578e0944fcb061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57c850761596b5aa4a0ea5f53733b5bd9d29436b281e37e2595e9dafc82c2198
MD5 d79a33520b996c510ec4d431ef00bc3b
BLAKE2b-256 4157a987e1a506e610c1ed81502033ccf5fd66b9929e48a6f4a2b20c0fc49e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3007654c568d5dfefc8b3e72dc357232208b1b2e60579aef144c016dcd0271f0
MD5 707de8659d96978837f25049bf7bf440
BLAKE2b-256 0d70eea5589f3a9b0e4371fcdbe728149d782d6f7685b571660ef5418774eeba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dca0d3aabb0d47eb7e56c2651261d22c554975ab612c69385490a38c1b347c3f
MD5 f80b0028d86bb643f016a9a1b2984fd7
BLAKE2b-256 88aaa226d62265bc7835430fdf96e12a286d84478ef70e0efe2b8ebe0600f9c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 72aeecce1a883e8348a945a1098790717411dceea1ffc2daf8ab75bef6d87e7c
MD5 b3d253cfe058418b65d37225933795f6
BLAKE2b-256 dfd2595721585ef99b15880aae8436a0d0ab6ddd462a4457821775039981a683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b474c9d92bc4a56125c449023966dca06b2f4a8ca45e379890f635af2e89b511
MD5 95ecf35f5ca149542b51832fd879bee3
BLAKE2b-256 46a7b7d611f37af358507705e20f5bf9c0a1b26da2ac4ff6400ed4e02a0a12a3

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