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

Uploaded Source

Built Distributions

fastdatetime-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

fastdatetime-0.1.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (653.7 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

fastdatetime-0.1.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (655.0 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.1.0-cp310-none-win_amd64.whl (421.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastdatetime-0.1.0-cp310-none-win32.whl (400.7 kB view details)

Uploaded CPython 3.10 Windows x86

fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

fastdatetime-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

fastdatetime-0.1.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.3 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.0-cp310-cp310-macosx_10_7_x86_64.whl (653.6 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

fastdatetime-0.1.0-cp39-none-win_amd64.whl (421.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastdatetime-0.1.0-cp39-none-win32.whl (400.7 kB view details)

Uploaded CPython 3.9 Windows x86

fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

fastdatetime-0.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

fastdatetime-0.1.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.3 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.0-cp39-cp39-macosx_10_7_x86_64.whl (653.6 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

fastdatetime-0.1.0-cp38-none-win_amd64.whl (421.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastdatetime-0.1.0-cp38-none-win32.whl (400.7 kB view details)

Uploaded CPython 3.8 Windows x86

fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastdatetime-0.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

fastdatetime-0.1.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.3 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.0-cp38-cp38-macosx_10_7_x86_64.whl (653.6 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

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

Uploaded CPython 3.7 Windows x86-64

fastdatetime-0.1.0-cp37-none-win32.whl (400.7 kB view details)

Uploaded CPython 3.7 Windows x86

fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64

fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fastdatetime-0.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.4 MB view details)

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

fastdatetime-0.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

fastdatetime-0.1.0-cp37-cp37m-macosx_10_7_x86_64.whl (653.6 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: fastdatetime-0.1.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.1.0.tar.gz
Algorithm Hash digest
SHA256 d6d994a3824229f10ee38db932d9370d0830c352b2e8925558badd60454de86e
MD5 2b635c1a50bff79093252835cd68b17c
BLAKE2b-256 5ea1beda7c8fad79386ef26057e52a572ce9bc373fad418f6a0aa332bc0035bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 586958381ba68c7ea348aa250e54405edb8f1a7c592647e29f2988a53a58827a
MD5 1ff9df48a62b650bc0ce9a898f013516
BLAKE2b-256 44d230118927f08027547510ceb3efb0d107b67c6f91e03e14ddf1c7631c4cd3

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 85e970ade081aad2f33cf8964943e1e51b06264ffb0bea779e2d8e8ea67c44c5
MD5 d82e4ce13edad88b4e71e733f02336df
BLAKE2b-256 3e8e61feb32681afe13da8a2558d81276787c8a69f9fd83a012977b95e94a1a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bf073b65a6209311b635e0ccb84c66e140c3904e8b6cf1f0be0dbad7ad173892
MD5 9ea8e67d7dc9d0859fd9a623ff1fdb89
BLAKE2b-256 67e2da5b60ee973cf52e3230d2a646ebed9d9bc77df243e10f59793148d0a1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f48ee38d7f3c8e69ec26bb2559b5df3834743d2e60f8caa69fbd4193ee46c74
MD5 c63b2ac3a6e89534279480a06daa6187
BLAKE2b-256 99a136192eb4a8c16ec4843b9e1decea4762921fdd348b2871ce5de7f85c0b97

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2203081c33733942e607eb1421f47258aa83d3990b9899e1fc1d8282f4c32e7
MD5 8c9b941a2e7a809c2e4ce8e68c7a9672
BLAKE2b-256 7834bfab6352ca1db3d8851b0961dfc141bc362112fff4bb522faa5d8b9046f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e472e9b17dd75f8466e7e69b36232ea1145208863d5b8f743b482a583ab80cb9
MD5 ea0c8313b5e7e7cc23a011508931d8d8
BLAKE2b-256 1cebe66f916f286bd360dd48f3e3b245bf95fc8cec211e98709945735c470b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fed6fe730214de6faac10e90b6f5b00fddc588cbf9a6696a3c80c2c55b3e5eba
MD5 2150c14bbe889f389883d254a37be4b8
BLAKE2b-256 cba44364bb19d6abb9e4d3b1db995d9d5140d29838d0f00f13cd9e551f9558ae

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp310-none-win32.whl.

File metadata

  • Download URL: fastdatetime-0.1.0-cp310-none-win32.whl
  • Upload date:
  • Size: 400.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for fastdatetime-0.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2604007edb5c57e35e1fe70495cdb4b3d2a93e74a1fc97fb5aa272c76573a03a
MD5 510e0fd24706fac40eb535c0b3d73f55
BLAKE2b-256 3a0f0a58784650d100fe6c7699fa79fd353e3b06c172dee7f3e205daaf6dc024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72163523adc2f413c3d15c3db5c3fbbac9aae8518724fc9b27b6ded7de5991f9
MD5 6439234b57fae32aa73cec452968ae42
BLAKE2b-256 272a787b4397885dbea395b9c30beaebb93c23a2537c2b830ec626aa4fd57618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bae1bd7e3fddb92c8b181b9fba3dfe361840033e942dfe260dc6a69fb667b547
MD5 88c65929656f9ebe00bbb74ac2fad4d4
BLAKE2b-256 f561c748dfdb9b1216e84bdf235f966a0e444041f011f6e3af37e2df79823b01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 9af5bb79a544ee44cb3fabdbdb60f613ef7b60f3eed2a7a9d8b2939c8e9dc00a
MD5 a19d6884fe660895bcfa9a4d1f238ccf
BLAKE2b-256 3d15b8a8f7dbfc5158fe62000a54bb8184f4a9746ff12066bc8e80ef118a8ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ded8f3cd7062b79dcfb03c30683f36e235625c199665d3325c80d4cfed94fa5
MD5 99df81bac755069a6463e8c39a48faa8
BLAKE2b-256 41d88a7a689fdaa5e2d77e40e38f49a418387dd9d997597f0ffd20cf6e193ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b3369eecd7fe36ae67bb88459ea8589a1f45e1598dc9c14fa7bfd38332ffdb1
MD5 9d570b7ef93086f207901fde27044b74
BLAKE2b-256 f23fd3e02561d534940de9449fa022b5158276d150f02f5c2fb94cbcae05f15e

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1a54faa3e9c0d09c8858aa041dfe450d3fe2153660d3b7358ed035df05390e86
MD5 2b323b85fa2d5131142d198289e23afb
BLAKE2b-256 5fdf29212b7152ec9a10dcbac03830b4e9578e529bdb1d4782209a357be1c15d

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 323ed72e0cc1b15e4f1e221a5d2bd9893f618ef83a57c08768bd9031edce4587
MD5 b31a1779ac883399a43fcb5824053760
BLAKE2b-256 929de04d1d77213dab311b6e0da553517b06ce5c00f536384453ef962fc0e563

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.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.1.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d8d09bd4774d81886aa461162d7d147551ac1d00bdc4af9f209bdedd87397ed0
MD5 ba44a9a5fd0661b4bec8f8bb98e26f9b
BLAKE2b-256 e719a0a5ff5c93d0e2559e76ffdb118677375fe9287d970af9df1c6f426a4f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7314d7af15467b88790eaf341f6590afe765ba012f694ee9c4b83f561013b4e9
MD5 236f9526fafad5fc63f6ccbcc366f122
BLAKE2b-256 6c64bfceb04ae66677235e65c87200651a3746330b3cf7de38840cf9f77cebda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 6a70509f1bf066ad93bd91e790bf85a463304085fd1f86a069e454a508513928
MD5 02216b5ef8466c106b2c86ef4d8ce8fa
BLAKE2b-256 bc0232c28bb99c43476e5238ed26df50e4621a01b730ba63d8264ae9a2d1920c

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp39-none-win32.whl.

File metadata

  • Download URL: fastdatetime-0.1.0-cp39-none-win32.whl
  • Upload date:
  • Size: 400.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for fastdatetime-0.1.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1648ec0e30ce334657bf0c7a40cf0bf5e38e5cefda5b73ae7da43d31841bad19
MD5 20cb0069a046ca567decae807ea355e8
BLAKE2b-256 2eebd8c8605d49650e8851f801c04729cffca75e4bf6679377c7ad1dce407ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7437bbba6794ee483c2abc7fc0a01d63027f7169a16c8a25d8060a6d61d00ac
MD5 9febe966949701472f6efeea94c8db80
BLAKE2b-256 f6e0d679194980a868df03b45b7041b9a881c5b60fd21990a09e6ad0e9e6e74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be742d242c43d985f3bd913e803f661a8654360aaba2c604459568edc7968bf5
MD5 36c90bc9797d40a888e72c3a5cafedf7
BLAKE2b-256 4b6165d2cb8ba84ccaa6041fe6e6b8b92fef67363ab444eebcfd1e38a62b1ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 cfeaaf6082dc22a6241b4b99fc80cb9c09ebe90f54bc09cb05230ecd8df8b99d
MD5 f0ddadc50ef89a80de7a56d8bb24d072
BLAKE2b-256 d5e8c6febd7f5e9f2be750d134255bce62a976ca88ad6e742bdf518236a3dfba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d68f9ae5184ae643e301fa1c9dd9774cbbe82812695fe57016f93cc589052a3d
MD5 82c5e2a33edb33a9e5cf99495b4094dd
BLAKE2b-256 2170b02c44ee53a538ff5972646c55f576b08c2d736a2c21eefea04a2ef1b315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f60c0e5a979dc1c8f10dbc869cabbcb20fdc93caf39cdca8daa72cce1a895757
MD5 b448414ead36f0190a348ea2472d9920
BLAKE2b-256 2ee4c91fc929e9a7ce92f5382f3afa18b0bc06042c93cb89975275ebdd41e8d7

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5f74ee61c03fcf77b2b23f5e91df8bcf4d587d5643008f245518a6ffd5b4cc48
MD5 ad2fbbe44b42113a803f143e6d45818e
BLAKE2b-256 76f606abdf26f2f72ae6234fbe4e884eb9bfa8acfa9ee70862f0cca15d7d443b

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f43ca30c5bf99c1578dacafb076f7aa63d19dabf5a67a5c024128e3c5be00d5c
MD5 667477997bf290108fe375a0d8315a10
BLAKE2b-256 b0f36f9101aa3042631756574a94b9a8e31d88a123de0badc24dab5b88765a2e

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.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.1.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 395b7c4211e5ecf58fcfe34c6f77b5426d6b3063dbf33dacc2e61f7c066b9502
MD5 c65e65adb2af91d647cee90b93534f9e
BLAKE2b-256 80a2d7561903ba9db7bf4e4cead0b2ac43853e0df7580454eebe7ee151afea83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 33ac7cfae4fd431313a7c19efcf16b3d5a32519fbff6de29af651976c9742b59
MD5 966de13fcaa73c3c63643955ee8e1ef4
BLAKE2b-256 cc0c619248bf59065861e4dc378009c6be072b1cf3fbbc53346c7775da051a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f8a7c76e6e35ee89941c724b45f803e7565ea11fe459555c5341f717cd45233
MD5 114b42e4e2a9b31cb140285ebf53f307
BLAKE2b-256 6ac1aa85b9f11718312c0a9c720c28ec66252696d214958c96a122df4bd47f2c

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp38-none-win32.whl.

File metadata

  • Download URL: fastdatetime-0.1.0-cp38-none-win32.whl
  • Upload date:
  • Size: 400.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for fastdatetime-0.1.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7c634c6661abe1756526b5d5b845f5ff01e7c9e17b175e9491d371088dde1824
MD5 d9d750a101f32e0221a499bc136f88eb
BLAKE2b-256 bbb699f6eeec865e48ff48fa167f94d0d574cf0e91058bbda729e21088fc103d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f318cb91e94496714421893c32ec47762efb0ae95d719bd04201015b0b50e9eb
MD5 4e0bbbf9c4018071dcb0eb570bb00772
BLAKE2b-256 fcc79448cd848a13d75053657b4f8b4ea65937ef2d4447ff4f19250f36e27b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad2138497f25180eef737b8bbba591a4be7ec511d60f29e830abb9b842116a84
MD5 26d2a9aafd43be223c1c8649ebb82fb1
BLAKE2b-256 199570aa95fd3e98a03fc89a9cc4eb852b6b270f69fe576802b4fde14a2fbefb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 3ed84ee2f46714f82a3bdf442b4b4f4a7ce0af8cdbe5821660c9c2e885b2929e
MD5 1cc5f36b0133c2b6114dffcb3c910709
BLAKE2b-256 61efdbed6082dfe1269971bb5bd42c1f5c2a703aad3afed764ab3f8f532d4761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9613d9358b7ad6c7288d20ec06016bf98e91cd16f8acfd09ed2329b85bd24d82
MD5 a2ef94da1cd7e146a543d783e6a77e3c
BLAKE2b-256 b9104307fab56efd8c7be36a0f3b3ddb2091f8b603d92fe3de44f2e41645bd02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be2973526fb1b637f68425633bf159d9cd6624d9983d461d27ccd1b05374a4e8
MD5 2f3a7b6ec37b30e5772978b954e17027
BLAKE2b-256 17386da32162b51835571ce4940bb65f75b161fe515cc4016fabde968e538daf

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cac78261a3ebda1d08b20b53cb7644de5cff1ad01c38bf60fe0293c2a6161a9a
MD5 e3b8177318e674ea3323ad99ea22bc63
BLAKE2b-256 03541e69e2a4efdc008e852f19c525c8de63494a4d8444fd62a5380acf940974

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 79a488b80c2eb4c5d3b588313fed1de11eaca8414ef53197dff4d901770bd1c6
MD5 92cac893390276c2791f12796d1e9cd0
BLAKE2b-256 9df4b17e4cd76ef2209698ebb758ee7abc8cf5c4781fccd53d82dbed1c3a0b79

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.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.1.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 913495107887d2d7e053037331c533281519ee81404b10b4d944100d67c9cb30
MD5 31b366ded0d6740bcc68c3b280f38dd0
BLAKE2b-256 454d29f1fe3a14c818f345e4c7f13407cbcc2c1ce1a332c098017169986e36e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 559f74c7cc165fc2d43c26fa71974ec0aac6001b463af02150a91f04d926a440
MD5 4a56bfec9741c5333c897c2f6bafea44
BLAKE2b-256 c87dd20c64364e5aac33378a87e405c4c85be914d7c6bb75fa5c6853e71e844f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 730647117095f7c9ecdeeea54ff935c048bb4c1cad9fa10421ad4887434099ce
MD5 ea717c5b99003340378dea60e58d792d
BLAKE2b-256 2cf9ec9b56db930bca0c377103f971b2cba6ed402a2c2adfd80727a04fcb3f24

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp37-none-win32.whl.

File metadata

  • Download URL: fastdatetime-0.1.0-cp37-none-win32.whl
  • Upload date:
  • Size: 400.7 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for fastdatetime-0.1.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 6dc7b1de069d66642e5dbd80b0fdb9e1597de97904de5855731e4b01fb2dd7c2
MD5 a088a0be6a4c99981a6e862b73b6e887
BLAKE2b-256 7a9eaf9e717c5f988aa1ba7235e443002d23185fdc7dfbe35762653c7ff16ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0672239e8f7ef4d5df698f1069fcce58ea8934cb401508add2ab1446401b1840
MD5 ccfa10f9629c72337461414fd295429e
BLAKE2b-256 110337c819e95abe6d900fcc6a348071e28bbdce8f1001353ec16545838b6667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc494eb3c08aabe4175de49e746dd5981cab71ae303b88254e0d211a180c9256
MD5 011387eea54e3bb778f703ef2cc44efb
BLAKE2b-256 36fbd50cc4af5403985d39348ab3d3307d4570f4325dcabb1afd53f3ca1805b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 249ba787a56343f4ca895fad339da2eb96ea55ba67b1546c3b9c028172c99927
MD5 1910669276738adba5d56cae6239a06e
BLAKE2b-256 8c3d3fcc2e89705172d6e6b99c4e4d2334d524be799a3d1dbdbd84645af696c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 beaa42a36fc821fbac2e75c7ae4b25da3ca21f4b6df4280d1db080086c8e2726
MD5 aa3ebe241369d1a921a3900c3b8b3d36
BLAKE2b-256 5c368f1eeed79d71126e6111ff6ac0721a49ede05ce0228c115924543337336f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 745affc871559254419af944126bde9d21672bbf34b6b21a037e96a678c06444
MD5 993bac1312839bca9ec707e4e25c4a39
BLAKE2b-256 56c6e890b043cae22d916993b68e003c77c17663f8e5efefddbba37ece78e48f

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b152bbdfeae462e233ac0dcf63790b539c5fb1c9ebc21c040af5e84ac61b98b
MD5 c28703b6c3076e9cf6ab9c272e4418a3
BLAKE2b-256 d52093dba21fac5395905e12ef4af9a57e9df4421e82642d4e79dca27e0b2b2a

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1c02ab3a3ed1d49b07c729ccfd4283f8358bcb40cd5efe0005423aeefcf003c1
MD5 49ed61c138c86d6abfdf5191568b10c6
BLAKE2b-256 6a6c120b01eaa78453a3a3c52d15d51aa09068c25110bd115b6fe938ab0a5914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 894c776df82bafd47e1e19d4c84587b76b95961cb341441b3c6604e5bb8e4459
MD5 c6f2502f73186f4302746314d9e4f87f
BLAKE2b-256 dc416ec36f2358a600477791ead3ec6837c249415887417c93fbb35f723f77d9

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