Like datetime, but fast
Project description
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:
fastdatetime.strptime
(based on time along with time-fmt)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
-
chrono as an alternative implementation parse
strptime
formats (specifiers reference) -
pyo3 for Python bindings
-
maturin for building Python wheels
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
Built Distributions
File details
Details for the file fastdatetime-0.3.2.tar.gz
.
File metadata
- Download URL: fastdatetime-0.3.2.tar.gz
- Upload date:
- Size: 22.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66666da1baa2ce178cf8fe1f0d9f88240cb6d5a528cea58818a5bffdf0053fe3 |
|
MD5 | 2c6136a74ccd99b40b2f564277f2c08e |
|
BLAKE2b-256 | bebdab14c439a7065b96b2cad98b9ae5d33b08fceb63de8236a71c36a51aaa15 |
File details
Details for the file fastdatetime-0.3.2-cp311-none-win_amd64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp311-none-win_amd64.whl
- Upload date:
- Size: 422.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fc1c204cd7fb8845ad1eccbbf36e6b539f57fc3d8acb7f7b0d94d4580a998d8 |
|
MD5 | 744d526446e33d143e0cbefd800f5200 |
|
BLAKE2b-256 | ab40ee0acfdb9e76702ef1418b094d1279fe64b8dc9ef7823f69ac3317ef914e |
File details
Details for the file fastdatetime-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa99be425c12e4475fb64af9b81c8a4af5bb3c605069e24204f9561f23bc7de5 |
|
MD5 | 12ac9f1b039d929a23b34300925249db |
|
BLAKE2b-256 | bbe7fa51a0094311dd66006b3b970a9c6b1317996cbc13771ef3e7d24734ca58 |
File details
Details for the file fastdatetime-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 962.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75fb9b8788bb67d62896afb84ec9468c73c34677d60cce41fd804748e8537513 |
|
MD5 | 7b6df106f5c9c42244a4a07516c6c304 |
|
BLAKE2b-256 | e014d529fb43ab29daca2cb7e1627690eddf34473b176f7dc7279c47278faebf |
File details
Details for the file fastdatetime-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 998709970f8936594af091c6b599daffa2ec30bce84fed07c1c183b566b17e19 |
|
MD5 | 94f44a21a2b411755e104e2e4070f110 |
|
BLAKE2b-256 | 821b6cf65a3f9993ea57b425c6b8c27b6d987923a8573cd614791ef623f3e5de |
File details
Details for the file fastdatetime-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 973.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b401954168930fba095eddcb7facdd6050b23c388882d9b59a211dbfc8854bfb |
|
MD5 | 75b8a8918cabfa84e2d2537e9d052662 |
|
BLAKE2b-256 | fd02ac52e09766dc2240896225db3d5686a28651cb4ebb0c84e5a6335118cf38 |
File details
Details for the file fastdatetime-0.3.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10d7ee68478e08d09c0930b2c89a7006e62d1fa5f165ad9f521ccfb89183537c |
|
MD5 | 3952bff18f1cea3eb170de92c5c293e4 |
|
BLAKE2b-256 | 481b85f3b4c006635a09a75ac24455fa8ef9cf2b10e56aead1088af6e0af6133 |
File details
Details for the file fastdatetime-0.3.2-cp311-cp311-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp311-cp311-macosx_10_7_x86_64.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.11, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90a3bded3b986a78f41d28811423437bfa364d1e92fbf1d8e64b6506965a0b60 |
|
MD5 | c560d1ba384ebe8927d4891364434395 |
|
BLAKE2b-256 | 208dce1ba51bc1466f7fefb2af591fa52a2edb79febca11274889cb7e1609144 |
File details
Details for the file fastdatetime-0.3.2-cp310-none-win_amd64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp310-none-win_amd64.whl
- Upload date:
- Size: 422.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d041a4dedcf2087daa418f67ffe11ab37771749d22a4f43472a10a5a60c29fd2 |
|
MD5 | 4bb9f6042bc8eeb53168ee9bd5b15724 |
|
BLAKE2b-256 | dea0a5c4990e98754c1dec536b01220c3fc24134399bccc5d26dd5a14806fcf2 |
File details
Details for the file fastdatetime-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4de1c502e73ab3d0dd7da6900703acfeedf8d24affacdd84cb3067e2d205bb23 |
|
MD5 | 82a56e21037b4976c9c73f1d88b92307 |
|
BLAKE2b-256 | f2055be9973f70aac9ec1824f86552ac5049383e17ed37d6e045ca48110c2075 |
File details
Details for the file fastdatetime-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 962.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c5b5297b8dd1b71a1c1a4b37bfc2752779dd5dfcd243a6b62cffce8d9409e31 |
|
MD5 | 5f3440a35fea8bf69cf4820066087caa |
|
BLAKE2b-256 | f557954dd9954d270bb7708f4bb881e8a40f9cdbdd53d3c07542a809946e9226 |
File details
Details for the file fastdatetime-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61b0b0e5b9bf9fbf6b49e7a6b8c77150fea082c3a2321e9f5e50a84b639493af |
|
MD5 | 3aa5978de11d10b25dd9d23571df37e8 |
|
BLAKE2b-256 | bd29a591c4d31b82bbd78f970e0e68ac1e0c22f2b4b1fc471b7e7177e303fe37 |
File details
Details for the file fastdatetime-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 973.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c757a8ced8cc88b9df16940b1fb8a7b3bf586b748fca53ec525b989bce0173e2 |
|
MD5 | d730851bb5d1439968e94ad8c6c61da0 |
|
BLAKE2b-256 | 9043b48d6ea2627cde2b760697e35314253fe34b37dc6731211fb90d05178c49 |
File details
Details for the file fastdatetime-0.3.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e899dd821093031fdcf01e14e327dc2f892569270f7d8d4e644affdf1fdb3d3 |
|
MD5 | 1c7afefe8b5bbfbc0629ab8b87e38d5d |
|
BLAKE2b-256 | 5954f0c8752f0142e432af23878f00dec298153a2f0a952ad65ff406306009e7 |
File details
Details for the file fastdatetime-0.3.2-cp310-cp310-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp310-cp310-macosx_10_7_x86_64.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.10, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb7a5dc54410d1d9de161ad2f6716bdab4427cab53b095f3bd010849325fb306 |
|
MD5 | 7df6e45a4823f66cf24b88c6ed526abc |
|
BLAKE2b-256 | d79544cb3aa105d8aaa171ecfe34700db1e583afda176280373c8b875bb87487 |
File details
Details for the file fastdatetime-0.3.2-cp39-none-win_amd64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp39-none-win_amd64.whl
- Upload date:
- Size: 422.8 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61fa841ac2ba931f8f0386de5a3a28c198ad97ec5b0f8492312876d796671f0b |
|
MD5 | 1ed09a78842d37e655c6a1703f1a176a |
|
BLAKE2b-256 | 8d57fdabbdc0e49730476e825c8c950db3c8ceabbee2bfcfd786f2ec90d51c29 |
File details
Details for the file fastdatetime-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc9f7eeeb1008f5019f5b7a8905160eb0e01bf3c5fe4e8700c91a460fcfec4d3 |
|
MD5 | 8a674e9a99ceb87a17f1cc0a5c48ade4 |
|
BLAKE2b-256 | d6247b6d4384f9c315d81e197f602f3e4a5d3d2cc71dd22d6a29593240a0a154 |
File details
Details for the file fastdatetime-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 962.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9ea96d07b55657fe18833c2a168b0a30cf36fca7e38d8265e978247e664d26c |
|
MD5 | e649f71baa66c0b7e1398b3c1430d8ca |
|
BLAKE2b-256 | c9118940b58936c162ab28b1700e90158e7fee3ca9c2b1bd2c8e9a42e8747442 |
File details
Details for the file fastdatetime-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53a1c9453d1f467b0502dd36af63fee0dd7d6c71eba8b0ca8321bcf71a2f86ab |
|
MD5 | c103e4a7e1fa37086e0dddbc03a54bbb |
|
BLAKE2b-256 | 8d5753fec9f05c8aec4bb372e521a67ef5c891f279d48dc73ab6b083a3e8d290 |
File details
Details for the file fastdatetime-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 973.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e594107cd76a0ecc04d2f75b45a3f4fc5f902909f76c3992805eeabbf1f834c4 |
|
MD5 | b2076c3b4f0bfd502d7be1cf583f3202 |
|
BLAKE2b-256 | 38a2dbc23f9abef33ca33dbd3b8bd756f298322ec564eefc1195f47c7e06b4ff |
File details
Details for the file fastdatetime-0.3.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 665ca106448b86afd277d3cb1fd12b5e1d52d9a9be289c542c2bb6880184b965 |
|
MD5 | 27a6ae1aa3ba7e242d9785e3888ed462 |
|
BLAKE2b-256 | e26b4ee4c19e2b2fcfe4c07512247fb1477fd83164b116eeb795953151cec2fd |
File details
Details for the file fastdatetime-0.3.2-cp39-cp39-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp39-cp39-macosx_10_7_x86_64.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.9, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06481e39ffa51275d7afde53b942b44b0b97b4e04876726a015633e592812c6d |
|
MD5 | 54b2947bc26057e96a5a49f6ba849f8f |
|
BLAKE2b-256 | 4d49ff49ec7565c77c5b69040ab22435e9565f25723993b1fc96e68a845b71d5 |
File details
Details for the file fastdatetime-0.3.2-cp38-none-win_amd64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp38-none-win_amd64.whl
- Upload date:
- Size: 422.8 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44991f225d298a8ec92274f6ab2c5c288d394c139163407995234b938d93b9e6 |
|
MD5 | 16388b188e42de3ecb9bf4963d73ac1e |
|
BLAKE2b-256 | 1f02d80fbe910c39daac56de87a8c2bdb93b6be48ffb32f8e764f98fa12714e4 |
File details
Details for the file fastdatetime-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6304e11c27441e4d179419879354b8a0078d16c4c86d684260bb47190485bb0d |
|
MD5 | 4d893675695dc780e9b4a5873e75943f |
|
BLAKE2b-256 | da4e76ab563fc368f758dcdabbd37e6c215ab3a02f49987c2d17c606cabd6d09 |
File details
Details for the file fastdatetime-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 962.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4255530a82a2aa48de47af8080904cc8b3ac6330e891ecc02e51115d345f2d68 |
|
MD5 | 4d6e425de237048641a25cf7a3b675b0 |
|
BLAKE2b-256 | 4eae0176448cdb444307cd3f79b02b4896bde424eff4098d28925421745ce234 |
File details
Details for the file fastdatetime-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e46501c1203935a204c85336b10758889f1e6642631e646ae3b9034644ef695 |
|
MD5 | f48b9e6cccd980bc1e1017f3b4256c63 |
|
BLAKE2b-256 | 71ca267f77e3c5957244d3cf639f935a1058a6201382b92fbd7d8477102b2097 |
File details
Details for the file fastdatetime-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 973.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d511af471d8f67daacfa93ded40018aaaa482d97efcc942f4c9ddbfc8d3aaacf |
|
MD5 | 9b6e9e0900843c173b652c68d73ebdac |
|
BLAKE2b-256 | 1ca61eac9018b1e86af7f51fc48ea2afc9815f07152e2de0d8d583d826542551 |
File details
Details for the file fastdatetime-0.3.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3410c6ef7be9ded637d90ba0b3151d6a8fdc3d8a459acb8634173a4fe6379939 |
|
MD5 | cac8318ce0889972992436af0688ca97 |
|
BLAKE2b-256 | 3c3690b1cd0788bd2fb10fc79da725bf77cac264f131c029c00dfbe1c1879aa6 |
File details
Details for the file fastdatetime-0.3.2-cp38-cp38-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp38-cp38-macosx_10_7_x86_64.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.8, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e2ccca49343f15a6c15f103f0f0bb63c2150a3915d0934708e7bdaa216b02c0 |
|
MD5 | b84581b240af846efe926756f76283d8 |
|
BLAKE2b-256 | 478d65aba395533195dc55b833fc69bc9c6c404f4ae2e5639dadb28d008a66de |
File details
Details for the file fastdatetime-0.3.2-cp37-none-win_amd64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp37-none-win_amd64.whl
- Upload date:
- Size: 422.7 kB
- Tags: CPython 3.7, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02bcb025c2dd7fb44f5fddf4810902e023dd04bffb14634727df8c13d49cf90a |
|
MD5 | 6d535c1864a47bc868a8112c9ded2c59 |
|
BLAKE2b-256 | 1e3890cd04a8921b9d3caa1b32ee9e75e44852a814b69430dc257903ebb4471a |
File details
Details for the file fastdatetime-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebd0ae13444ae3bfa43e0cf2d4342b3632555c9db41511d187cef46876e43933 |
|
MD5 | c8c28dfddfcafac9932057399853e9e3 |
|
BLAKE2b-256 | 8c9371e4c51842c38b2af8a15848a674bda57b42c1f63f54be1d05ae458285c0 |
File details
Details for the file fastdatetime-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 962.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa3bc212ce2f18bd246d27a235c05ab9f85ff1045cc1fd0992b4715aa341af28 |
|
MD5 | b91c5641430f8e501c5eb00b7f5f6c28 |
|
BLAKE2b-256 | b16f112b66c92796efc069a9733f996562683e57b21efa54b8a082256a07e169 |
File details
Details for the file fastdatetime-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b979acb6b90ebf0125652b09b3382fd3b4bdf1a03a4b011cb62408b3cac864d4 |
|
MD5 | 616eb05f5ea2781e285b728f011b1774 |
|
BLAKE2b-256 | 80f66b842a6cdee8bb813ccf5ef36da2372211af3f3ddb2c16c9799825d1ec99 |
File details
Details for the file fastdatetime-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 973.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75d6faa96bb8993d91b4261d80e38577b08a55ca518a1fdc88243b3821d0132f |
|
MD5 | 2e740f0eed69fda7cb9a6b0ecec71a01 |
|
BLAKE2b-256 | e33a130d67e7c2b7920bc4d47571102184df4d366b1f10ef924cf1e5c6e08a0e |
File details
Details for the file fastdatetime-0.3.2-cp37-cp37m-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: fastdatetime-0.3.2-cp37-cp37m-macosx_10_7_x86_64.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.7m, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fc21e4b9d83ceb826b527a1ac9acd4e0862671b5ad722c636bbfd0f67fb34c7 |
|
MD5 | 6296b72d7e3f72310618a0fe4d9ffc85 |
|
BLAKE2b-256 | 0c64223157bfa9c4f5380cf8c86854efb43c5c85b4b8db7d8ffb113402731b7e |