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

Uploaded Source

Built Distributions

fastdatetime-0.3.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (990.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (534.5 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.3.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl (992.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (536.4 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.3.1-cp310-none-win_amd64.whl (423.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (935.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl (989.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (953.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

fastdatetime-0.3.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.1 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.1-cp310-cp310-macosx_10_7_x86_64.whl (534.4 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

fastdatetime-0.3.1-cp39-none-win_amd64.whl (423.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.1-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.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (935.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (989.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (953.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

fastdatetime-0.3.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.1 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.1-cp39-cp39-macosx_10_7_x86_64.whl (534.4 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

fastdatetime-0.3.1-cp38-none-win_amd64.whl (423.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.1-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.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (935.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (989.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

fastdatetime-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (953.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

fastdatetime-0.3.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.1 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.1-cp38-cp38-macosx_10_7_x86_64.whl (534.4 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

fastdatetime-0.3.1-cp37-none-win_amd64.whl (423.3 kB view details)

Uploaded CPython 3.7 Windows x86-64

fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

fastdatetime-0.3.1-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.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (935.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fastdatetime-0.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (989.3 kB view details)

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

fastdatetime-0.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (953.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

fastdatetime-0.3.1-cp37-cp37m-macosx_10_7_x86_64.whl (534.4 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: fastdatetime-0.3.1.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for fastdatetime-0.3.1.tar.gz
Algorithm Hash digest
SHA256 552633215047029630ddb7f05b57ae5d4bc711bd30ccfed5af760c806dbc0935
MD5 642688bc5533c2a5ed357da1ac047c65
BLAKE2b-256 96abc03ad34ec45ff0f5f08a56868dff2c1dcb36113cb24784db728a5c2a3c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e607250764971d31a17e3fbe5d03d0a3a18d0776b81fe21e160b1de305bd99b
MD5 acb9a2e7bf53d0fcce55671792ef40f3
BLAKE2b-256 cc39d7fda79fb545d5187a0f50f71403f8749835556d48a671286e99e13bcd16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4fcf6766e34b39fa3b1bad3ce79d643bf5b8c32c84e1fb5ffc47fdd00a407768
MD5 a110893ff0b12cfe130015cd9b229c3e
BLAKE2b-256 ea343b9a16a4fb6d3c47222dd66433d9b71fa37edd175aaac5496bbb1dec7fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 62dbbbe41a798c28d0562044fa73bab2e71c5b89ffb003a681bb9f42343afa19
MD5 c0201a18fd138c54f4ab6d34b71640fe
BLAKE2b-256 8b01d39bc01783c0ac455c807d1ea01f709a95d354ebbcdc5832c9a9240627d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 681cb67cef15971aa3848e6004963158a628a08641a713056a0f7fe072f2126c
MD5 44ad3b1b21199a91180d6d33afe211e5
BLAKE2b-256 6479ee84cb357827f9551b30b05c88d73376a5c03e93a40558407c8cfaf3877b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4637f8f7a356176d781376100475a9562b44797d8853e225776966704bf74f9a
MD5 c964aed390ca344284f850d54e47ecee
BLAKE2b-256 2aa9f53aa90e939ad1e1c24b9a62497534e517e79d8d614088a4bb3586ca874b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9e022e5c888112cebe9e50dbc8bb7fcedc82b80e8ef427b95ac075ac2deab1b9
MD5 64d4d347087f526871f721d7d9d966f2
BLAKE2b-256 f99e09880ca773d7afbf372003a42a39fa0d26409db7693f6111c17c83408211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a18201bb882e8db188f73af96a765734e00bb86cffdb413e659ae60057abbe5
MD5 76df0f011e5785ce51e879dd5230561a
BLAKE2b-256 77933802e75203b5e4ce48692c4b2da76ef2313671dca9e4331799eade6929bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3776161025692e8c1088dc992bd2f71caa36737773246678184ad69eb02e05a8
MD5 f3ca0e973d88ffc24f6ccc588fc9a41e
BLAKE2b-256 b668e36a538103398f1080564d1e4dbb21960a717806958a10c27ea322fc57a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54e5e4d0126fe87af6be955392c7ee41763d61edaa2c592c96fea20077180f40
MD5 c5102b5ba4153a342b9ee04c1b2ecdf3
BLAKE2b-256 bd3c76a2e3d3b4fadf51d10b748a928a59072c4215a88133fced6533a52d4129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 101b033bcce8c87d880ffd079e47648c6ecf93edcbbea34ad720a5063628aa90
MD5 466fe04d28aba29f7ca530007c964a6b
BLAKE2b-256 f7cf98d1726b65823e0ba83759dad795bdbdc1a2329650d3070314f303f05d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab1bfc9da110815e939392a4c60a448616aafa18de51bf95847c9c01545bf859
MD5 21cac65d1790e718864f63aaf20e8ab8
BLAKE2b-256 dbc3c4d19e0e9d2af95807f64bdade4da622606c908690a6ffef4c5c707757b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 105127927741814b11ee6676d1f1d73079510661d3cb9c89d27d3dedc3a155a9
MD5 2d83f1a3887fa3114c88243288678c8e
BLAKE2b-256 e7201a1cd63dd7e5e98a485acfd3c10041d9ae4fd6366c587694d970ca73867d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a679611f159da018169742180ff3c87929a374375ed0a40bcf787270034cc3b3
MD5 abf3f3f4c71b996cbe76669e985e6c59
BLAKE2b-256 28335971c013269e7e161ac0e45298ad0ebeccb4925fd1f56136aac182331f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 22b0d2b4120f06434ad5f554f34c353fbc006b00bbed3f56a41600e95c9c4cdc
MD5 54891689737ad77083f846da136963ad
BLAKE2b-256 2bc1e9c5610ccd24721064cf61c76febd557967afe37a02a59b15c6e07d9fe79

See more details on using hashes here.

File details

Details for the file fastdatetime-0.3.1-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.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 39ccfaa78d2c7325da572e038156600914e08d11e1a02cded03389a910a22764
MD5 e92be0ae55161e0d87133fe61ecae974
BLAKE2b-256 8d6db1094d81b2b9993c0d97b84ba36a8692522ed45f395f8a2bc8e6bb5affd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b1fe63612a57eda1a50aa4591a35faa3d68642934a92c4a91832cc4e51ce319f
MD5 e2b8962b5d50d454572db7bf350ba0b8
BLAKE2b-256 613c3ecd701fbca7225661cc19f6988165aba0d8e2163f437f511e3547f3f6b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3a0765284be05e896b6afa1e040045937ce6ec3b86081be9c090e8779e9a8a22
MD5 f5c1a26164133dcea4d0712248c4d79b
BLAKE2b-256 abf984a6f3027c0e8b467ba8101ffa365b177d328ef9c1cb920cf2753f6d8477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48c9a8d563eb73299ccc90092ba38ea33dff3cf428e881cd82cb2102bdf2697d
MD5 5892adf3f554976dbfee8b9dc6ce568c
BLAKE2b-256 dfd868389c11f9a988dac9ecdbe24bbf2db6d06edb8dcc30dad3c9f795f4274a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0935466da6c1fb43eb864511e4224022db557a9beafa6c3f4303773cb28c799
MD5 7dd09f45270bfe79b70329fb3f824bd3
BLAKE2b-256 da930f632f76b01dff570deba59e0fc8e09386839b8a91a1f4095e27da55425c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 a726f0953be83340b7687dbba74da808481cb1af387f58a08ec352eae2860970
MD5 cc8ab74ce2f09f4da6d07fa1931f1aab
BLAKE2b-256 ba48b95188ab1c01ad9bb59c71d9e388326c8896d2187f477c249182a04f23ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6113cd9efed7d23b33fea2954c2a9be453eb6a78461c6be13ff7b55cde5ddc1c
MD5 69c7b505fcf53d269aeeb3927a86f82e
BLAKE2b-256 0003cf789d7fad60093fa692498881c8da49f600c79f1c57a46f51c05464dda6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90c6c3f04e63d323a19a573313bc83578e17ba30fb8f0b316d73b6d8bf32dc08
MD5 e80fa8d1c486c5f869b7ad70c5248e45
BLAKE2b-256 cb7bd16d053cf0e1a9211fc39ae30ef7b808c94553c4667529a3646b3a4896e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2473e8b6c1a0ce8630700db1ecae5630d9f88710fb9609b476e49f3d03d8b462
MD5 967bf94b16f7156097a446ab4aaa078a
BLAKE2b-256 a49a92688a8e751b0c0740bc9f88267a074ed90d04548a53355d93aaad7265a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fedf734e24af588d8ff34dffc7b14a3cd24f99951f319fcd3aacf94cffd83ef
MD5 1a3d53ec5144cd8198682a9472f4c628
BLAKE2b-256 0d60a607a04543551cac9ea5f6752fd432a4569ad4652ce31d200f1ccbdd6d6a

See more details on using hashes here.

File details

Details for the file fastdatetime-0.3.1-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.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ad52753a3839398cf8af1496d08491e491e76e8f8e60ac1ab54bc1b102d61519
MD5 8d11c1897654d52d1785cff382216916
BLAKE2b-256 371bd63cfb1744f1f9f60586670aba1848e7bac324fa5d0d370bc7f5a16604d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 631cebe297141777f97adf230f9b55453ad0751321c70d755ee51a58371dd0b8
MD5 9f01d7a6ee4f2992a64ade6a81e92925
BLAKE2b-256 d9476a1ec9ec82842baa4c74de073034ad3f2dbdac44fe8cc5b3c46b4e6d627a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a457494ed7ac4f4ebfa48cdd6784fa627297f7062cef552307db88f64fc05c1
MD5 ce528256c0324c9b001cc2f3576f8073
BLAKE2b-256 3c169023714cbec16b8db557b86a45bef36412dbe2e5dafc40c8d7d58a0cf1ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eda346188647b61c5071f30c0fcb034c05362d5813dcbe33abb597423465b631
MD5 7916ccade5ea51e6243cca6bd1498c93
BLAKE2b-256 e9729ac43551b3d1bf57a6dabd246887985df51720e9ec84e1d3a261e44f2504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1854f948612af7234e0230500329a070e1db301325c89ffc11754229faa7aacd
MD5 f8e49bffd8d7595741d229f7398a481a
BLAKE2b-256 8035f358a76a96e5512cda32203722a2f9e53be443ba765ff927803793106375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 ae0b4eb3e2146f990184b93ae0cc0fbaea3fdbb16b2ecfad70750cf37f9e6314
MD5 dc5ff21b5addd918a20001940ad8f08e
BLAKE2b-256 b139ec15ca66c847c00ea9da891c40144a9b200ddcd2d1875b916925f3568e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adc4c0e4701ad869c166f7b2112fe68d67b82881b1e6dd89d75d4948f8d6620e
MD5 4418b68605ce638613fdf42633ad094e
BLAKE2b-256 39b5c412c28c7e958770cc6c52fa77da23176984c52396e9bccaf59b16935cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 383e9714708e2ed073e086296b2b389ff62c56b02040166c13e4858fb95ac5a4
MD5 23b4cdd0d1e54e8c6a97fa0af8efb8c3
BLAKE2b-256 4237d3ef6b51472fbb06511ccd853029ee1c2fbe68bee17e5db307d0be442f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4710adb3677540a477f5ad74878dea5072bd5748e01b531df7ec9866b4be2904
MD5 35ebe08c18cce22fb86f30a84120097b
BLAKE2b-256 8f0d9aecea9b99a7fa95152838d7be4ab2edf0deea52e013dafe262b142e4890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d5ab1d11c6e5280d24a4cfd3230dad1cad7212ab7c1f6a49a3407d55767c133
MD5 5329cc5a18164a8f73497afb3b50cb19
BLAKE2b-256 3a3c93942abe8967646a432a624e7b4f3a60ccfc37bd0c538f04582532ab9a43

See more details on using hashes here.

File details

Details for the file fastdatetime-0.3.1-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.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c487edf5418c63f1353e53345b60f718f3408c2cc9dc9340ce29e8c5c64403ef
MD5 78001d977270b8ffc195c7dfbbf9689f
BLAKE2b-256 2910c858e8931618a8255a062b92eae812aadc1fe23122b3fc8045d8939f5146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c8fdbf8fc230a0655178e4abcd0f6edbf37e5c6b6336e69bd4f06c8c7fd26a7c
MD5 577dcf1f801d17334ff7a3feb73283ea
BLAKE2b-256 6d5c7d6e959e796258356cfa8dea131b59ef421823f91dcf34a7fc6a1a2f67de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b31e90674dd3c2e50a260504914d214ed9ea829562e7778cd3a068fdb9d2bbdb
MD5 bf1b6a6b67042143cb150424d836cce1
BLAKE2b-256 187cfcaf98a0738694c452d3de7a5981b4ffdaf343f8319dbb82ff3504686352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72635ac813196345eca1c6f9eeab1a09e1ccb3b66bbb4d43bbacb84a6b2ce80f
MD5 82b524ce2f44e6dab47442fbca65c977
BLAKE2b-256 15d4e9933a91b1a14ffd203e7ee4a961e4dfb04d246c43816b58f01499fd51b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01a70dc909a0bb4d5c0217e6da0c6769dc6c3f368331e59988fe0b56703a0f26
MD5 c4c5b341e831261305b70d0b00355841
BLAKE2b-256 79b04dddbad690dff94aef929ec21d7043d9ed3d3c2561bcb355251cc2aaced6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 9ce6b7720c10c222b3ad67ddcade42ffc80b9e86aeae70dd292e3f9d87f1c6f0
MD5 5f0946e2cde73e1767eac9d9f723d1fb
BLAKE2b-256 8bd75dfb1b9c41cba3905e5f169ac8566c9670c882bb0966d482bf85a637da6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbdd28d6043cc4075bddc7b4dd913081c4393f98aa491cc955f20c1d8ea6f1c2
MD5 6cef4b82764224077a7163c378d7b46c
BLAKE2b-256 3c0c8f134e25282ae6e78f15bd837f18b09a90b1d7de8336e60e016d9726835a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9c8320c2901d604bbde1efb64ce48380eab09f0bc110e88e625695b7ad9f409
MD5 61baaffa61e7430b0b5f235757010725
BLAKE2b-256 75d82c8d4885ea72b10d7f7dafeff0cff4ab6795cef1dd533ea17a11e532b856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 008f2d87006826af561e3a6c3aea5bc813954a5ac18088d6abe914a75326b7c5
MD5 3d771587b5e766a9f19e09d783ec7f73
BLAKE2b-256 8c9d6b8a20c350328de5ccd42855402ed622caf8f3a9ad728eaf30459914b43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56eb1d1ec733f90f4775c13fca20975a9b0f52c0adf65624f980f80296ce3d99
MD5 daf6fab33348e5a3fdb3481c60e5004e
BLAKE2b-256 0e9b70084ad6cae27b4486380d5e30de53a99d20fdfd406a547752bd778561d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.3.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b7d73d5e02ceebc2de652c2a8257dd7c930dad456ff68b8670f6ea524a11fa88
MD5 64de2b428373aa89eb3370086e3e69b1
BLAKE2b-256 770d7da95289854cf4ba26f5275628f9c46d93f73c486b1b28e957bf715192db

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