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

Uploaded Source

Built Distributions

fastdatetime-0.1.1-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.1-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.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (653.7 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

fastdatetime-0.1.1-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.1-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.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (655.0 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

fastdatetime-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-none-win_amd64.whl (421.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastdatetime-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp38-none-win_amd64.whl (421.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastdatetime-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp37-none-win_amd64.whl (421.4 kB view details)

Uploaded CPython 3.7 Windows x86-64

fastdatetime-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: fastdatetime-0.1.1.tar.gz
  • Upload date:
  • Size: 14.7 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.1.tar.gz
Algorithm Hash digest
SHA256 992a641ccde53334c79a372d6223f45b0952d209712e9dae1216c03984737821
MD5 419b6dca9bf42e8a86db0c153bc7f509
BLAKE2b-256 e63d1d02f52304a1eedc8127f55f9a3adf5da24548a4742ac84055a83f2f65b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6147dc9d1fa4a364ae68765307e343d5fb3df980bcdc900f6d2949c18f455637
MD5 19c5bb7fd2845d5ce7daa7629ab0fdf9
BLAKE2b-256 1f9dadbc54e5138a61642d61d17705f371d7d22304e4b8efec2eb0820c745dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b9eefcc1607edd3c4c56806be21ed7efbd34e45e925aa26b1b3c4f6e2c9ea5f3
MD5 acec9d8bd5de47b7fc2cd2536e482208
BLAKE2b-256 d5bf641e07d90a0764d6ba081fe8b1f1ee256772d63f430c4e20f4f9ed0c36b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9ed8458951b59f4e3b287bca692e202d7339c2ae572ddb4250e1601f7bf659e9
MD5 81a0a75570d1bf520d8829fc6100fa8d
BLAKE2b-256 38c61156f020a077b1e72aa8ecd2c8ed1445d3a436e91ab351c6d16a5e5a52d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d604c399be8a7650d0771970c5191da4b16673c3823b80fa6b97a8db59bc1969
MD5 ce0513d82e072d6b76b8491b41568484
BLAKE2b-256 5d149941d21093bba4f633d9a559488b0b86a3913bdb5fafa27b22a61e887db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b3dd1f07ff51d139f6d327b557e921eeb0437b054d221a2d35a419b06883aed9
MD5 a1695ea0041cd331e1b19a9de2ff878f
BLAKE2b-256 152017323dc088abf0a00f8c2451f548e520eeae599a4b1e504bb4911b1ab49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7d74d9ff887af6f0f9e4794318d7d25ea17b003a821b1ffd6104c4ee70765238
MD5 57a12590c2f40d52ad5d13812375848e
BLAKE2b-256 1745d2cc30fba86a471a516d36e5548bf29f4124a3fb839e0bd7a2cfb4af804b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 face876531195c93e5f5ce93d42fe428207dfe70884d2863ad20e9d32bfbb65d
MD5 e932bdbd39dc35a8dfb97450ba6db142
BLAKE2b-256 2d484fb1cc9047c8daa03ece656b0ce76bb3af16f5ec3e3c60c44281fa1a59eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96a96a3a9b96a04f4f4d74da0b5eb4633e484403306923bb86c4195225a54dd0
MD5 00d4afb35122e5b72d6fc24b185b67e9
BLAKE2b-256 2eed3dbc7715443d890361e904c6fb637c1c97db3cbe2490ba946d63e94987a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 728f86552c6b7c9e83ccc9df7837b40ecba95dc923a2786e3d92ffa01b91cf93
MD5 d8ac78dcbfdfe064d9479801f554524b
BLAKE2b-256 722e191c3b5a7a72c9b1137b5ab11914bbd708cd010c9353ced8c5b4f5319595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 d561398c59ba0dbd8c9959735e97039f945a0c58f870c0029df6d681e438a682
MD5 b01153d4ad3cf6037d16edcc977098e0
BLAKE2b-256 a2ab7e48b119287b380e87016d205020ecf43b97516ef6440df0507b632d88b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7134a10a2f78a13a132c1b36344d4fbd7615e5b6ab6fde1ba9328f75f5d13acc
MD5 b0353e90bf04b5bcbfb485ba0101800e
BLAKE2b-256 cb2231d83dac8a6c38e9db1217378dbd78b141fb6ad45911aaaf99fe6d84ea4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1639516becc86dc3346aae9bb4e128a6519ffe53b047f9b0b80cc058522ee02
MD5 7995ff68db05b38016b30c92eddaebb0
BLAKE2b-256 986694ad6a640f006084b672cd1e999c18c879b58ef729e103272ed6ff16eb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bc2155ec5238f6a63343098e0603a79e7165782920d13e85d7a85349c6f4dac3
MD5 ace5ad54971dc78707eba2b44b7f50cd
BLAKE2b-256 fc032e2388d6ac3fa17672edd524dcfc8d02358bee3b2c91b02e063369f2af5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a7a8cccbe6f6fa5519408237aebc076876e0c821ed285c499bf4ee1c2ac5ad8b
MD5 685f941c1dc53166b3e72715c854df20
BLAKE2b-256 1db35782453a33a7b15fe3f0768abc4ab18f1a8255a99b96559325846fdc64b8

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.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.1.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 be3e28c985b313e37f9532cd5d53842f8e918ea368b9bddcf9b6f0529c869cec
MD5 16f3cd8a0ba4f55533311c207001aadc
BLAKE2b-256 73ec5624e429687a1816ec616d0b22de51e0f9d407feb830dfa464ea6e414f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ea785a3ef6befa3c9b25bd9b1e59f40c8a52fa6168ff995b4b053a5774cbd9e4
MD5 d38b42209753236d8a5d09db553e3513
BLAKE2b-256 f53b07eeddc28e825de01cdabab8c7eccdfc88830dd25b3501a86729aa74fe72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ce7ed0cd89d1da4d0eb0d375302ec82d02c95cf250cdbe23acbab249bd6ec882
MD5 44cd27ca9dbbf886877ccbaceb361396
BLAKE2b-256 4208c22de7cff421a885ed3a1e945f41d027b60a8240ce39b26569f7ffae464d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ec956693edd5b80fbf0a226d775a2149c14e34560cc6d8e65d570c96ce39b1d
MD5 ccae35a85761f58c34700ee768bdce10
BLAKE2b-256 c73180829246a526c504db488f57c6f4a2a472296f7746a6486981b0f8c495d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f8cc4e3f5d92de482684bcef9a97b88ed38f24327884436b341fa88d63fcef6
MD5 41e6e53f785b49dbefd12dc3d3e7a524
BLAKE2b-256 8fd5d77516e6554f777427ba2044dea85b39c1ce508ef9cda9485e0217344493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 201386320eebe187f9de7f7360917f9cb45f4b8e2297f150fda699bce2f602fa
MD5 c354ff228cdd8b19eba21c5733a42ffd
BLAKE2b-256 76c54299a3cda36927aecc4c4f96defe1572eb5ecc7be8d1b4fb29a2f1f675b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e56e8c775babe6a6fe2c1cd0721c33f429d10501f72e89dee8c80a63c8e4c745
MD5 e5949b62037d04eef7beca6469c04070
BLAKE2b-256 af97f75be1dbae84812d2b7ebafeb33cb5cb705d1b5c3ead1960d6bd50fe5914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f1db0ad6b898f16b9d2064bf53a6ead457f62ff96e0ff53f0e8a2a0f6125ffd
MD5 03f88b02db9ee0b510daebc32e04b947
BLAKE2b-256 053dc50ac2f51c541dfa69068bb9990ed6a64a71fbaf162eaac5d287d76a6107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e481576b1bdb74a56a70ca2c737aa1837cfa9f83c36647c9edca485785061726
MD5 20e0dd2f0796695f1ddaf9ec5919cd4a
BLAKE2b-256 5129e775084e66314629a88075cc2f87fe75594d07d05a906cb0504ae86469a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac2f5d9af41d2e7bc5d6fb00919dc05d80b40e2212e6c901dabe18814f3f0dc5
MD5 b89732710ae022f371351d3e2866e613
BLAKE2b-256 723923193f312e8928dfd76f8c32ef858a084c2777134deab83bcac418299f93

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.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.1.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7cc58b29b54e194228dc17828ca575419b4fb4d93c1d4f79084a53c8dea7d891
MD5 6015475c3612fe5b44b59a93033aea1b
BLAKE2b-256 86ac14386353f5476636251eb201db17b2adb34ebc9229a07dbc722945810fe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8a571562f4a3be3de214851c2988998d90f16e73103ad2f2fd124a0182cdd786
MD5 468fe0665ccf735bafc0f06869db0bdb
BLAKE2b-256 777f6313ecd88c347df86060031ec47260e1369582607ac26b44d56e45bcdac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 dba282ba613c4ffef2413c27cd04b69bc1c49933ba40b5712e2615cfad8bb915
MD5 9c746c333c9b0e3696d67fe9aa7cd87e
BLAKE2b-256 385865302fbbbd88b2c7ed3eec4f07bdb8841b5d4b3ccd01dda0a150ef2ca712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd40e2cbbf665fb89935de41a5447511295c185ca0cf0b9f72761d96e5f6b879
MD5 2f7169910d7c80024a8845942ceacb99
BLAKE2b-256 ae96fdfb4f24fa32ee1f4f899124f6f48a2f996f9084eb7e6c83311bb20b3734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac320528e694803117bc2e9ef3226e0a6095dbe409e4575a83fb0d4b6660d479
MD5 8c91dd908957aeb23c4fa20de6bc4f09
BLAKE2b-256 3ee70c0559d92881b74a73b4a5d037582e3a05aa2315856f80a792f4a6f430a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 79cf5ac25c8a2c9f74ffb1058ec073aed6afeffc5a45244346493063c8017a5c
MD5 3ed19b702bbb9d580a644d67e9f7b10b
BLAKE2b-256 628e0bccbd823152b168e1340f5538e76d942719eaf91ab65c975ae017455467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29e142ac7cc72ad9f6925b0d163742da12e52c7e4eb279970095d529e4214e91
MD5 b2383711d62c3982503016238a58416b
BLAKE2b-256 46ad80f54af3984ab31090d1838d5a574e9545e9d096a1b90f379449f0fa4a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80e099c776760997476797ccc037005c6d46a821d41bd26e208dde77b49807a0
MD5 0da67a3872a3f52c035fb0d150d4fc13
BLAKE2b-256 8a18835b12942da6712a8d34a38174d538f1ce15582efe06d1e0fdc1e0a17129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fcf930a3f55a5143b7ea8b27360cb6a7bf84d44301cc756c3d26d516072c4ce5
MD5 8e5aa299c6853ed1afc1536afa08768e
BLAKE2b-256 c5cbaf78d16c2e5500969435ae457a7bcd6146f05fd9ae2fb70f2a388e5684be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fed090e87a5999264c49e038a923aca763d5fb3134616b24ad8cafd6e2b1495d
MD5 d94e8f3b1867a26eacd78199ad77d86a
BLAKE2b-256 38bb6c48f06a7c06813c7b701b59f3549deffbf356224734e1fd12c435af5b0e

See more details on using hashes here.

File details

Details for the file fastdatetime-0.1.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.1.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4d0fe97c9ea3ad3e091c41046a899fbc2b6d76d59b2ddab1ad9efdcd61ebe397
MD5 61522665efc6aa35fe34941b47795ce8
BLAKE2b-256 2d9f18960f374b83363a0e1093561b8ed86961fc0362f65b5f5142278bed92bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 417788ab0c73ee61e57a028c28e4e0d150f16c434218bb43c3f65d6ea0936097
MD5 800168dadd99a2303f200c5b3322f20b
BLAKE2b-256 325244f62df04749883ba00714405c5b5cc7b0499d927d3dcea53b6c716fde14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b8419bf76e8ae82a837ae2c012e815843d033d06933ecb5c8dd69db9950ff94b
MD5 11ee2a7fe8adfd2c0683e6392f68601c
BLAKE2b-256 32f7dcf946f33dbb4be9327663882a7537fc6fc741fa59021aa71e66b4e3e5cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 147a64e0ba48e6d9f3039df96569d795f3f25c97c598ecd16b3d0143a08d10f3
MD5 9644a2aa08b0930201359cfd7a7488be
BLAKE2b-256 636b77da6c6414ca913bc9df9d600c09f34f70a928eb8e49c71af63a512f2718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f128c460b20b30ef48c2914181e0b87f05f75f7b2ce803c8480c0982061f7187
MD5 feb37b5865aa1c8890a77ddde311e2f3
BLAKE2b-256 43aa43edcdec6b485aceaabcd8eb4f472c5cdf9f1590f17652806f56f1cc49db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 91da76c84058c308d9ba04bdb9bfbe9701866841ea23b60de285a209edc182eb
MD5 961025e9a52f054db72d5f692e41c094
BLAKE2b-256 195d8b938ab185e9fab2554cf110f245c0d6e3a71e609edb6e7859fcd768f4b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8409f9b43994e1b096c0a22b4e89f9841ebd2dd77ec70601d647109fc32cad95
MD5 0e765c22d673443a3bea5c284c33770e
BLAKE2b-256 9a2181c381e81a9350f539ffbbcaf1071100f512304598415b99d649c9ae62d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 027e90b78f938f6cd5414a029319e3c45b846ceb6e0917282b589a74b0bf3a6c
MD5 e5b8bd5a9713c0e325193c45ba948d27
BLAKE2b-256 083cb363c3a74978f46b2cce3e03f2bd57b7229b881801770981ff2ed37af086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 139dc7680371b4a3498cd443c79027ece5f120ead1450e63e84607e9c47ef27f
MD5 866b8e89640eafe4e2f26bc28d7de102
BLAKE2b-256 cf42db3e3f8ac1a2487c60ee44ec76dafd5c0f4e621204335f7cf3c807541173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7e089edfba6ca6bd07f3e7d1862e041e30aa88e3c834e9773a1d2f93c8162c23
MD5 97e22da9a307b85f497a7f998009825a
BLAKE2b-256 da1e68ec8f7c2f233bc533b14084e60aef72ea902cc89b6ac2ad67ba205e7608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastdatetime-0.1.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0cfa24d4d24d38481f0f6daea638cde1a6f20bb69e0ee8bde4498193d05da317
MD5 b9e32acac88361eedc8e19c473c9343f
BLAKE2b-256 799972ffd948e2b3ac3686e6b0eba7eb923dc63b098e0c114c19e101c6a9a3f8

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