No project description provided
Project description
croniters
a port of python's croniter package in Rust and exposed on PyPI via pyo3 as croniters.
original usage docs
Usage
A simple example::
>>> from croniter import croniter
>>> from datetime import datetime
>>> base = datetime(2010, 1, 25, 4, 46)
>>> iter = croniter('*/5 * * * *', base) # every 5 minutes
>>> print(iter.get_next(datetime)) # 2010-01-25 04:50:00
>>> print(iter.get_next(datetime)) # 2010-01-25 04:55:00
>>> print(iter.get_next(datetime)) # 2010-01-25 05:00:00
>>>
>>> iter = croniter('2 4 * * mon,fri', base) # 04:02 on every Monday and Friday
>>> print(iter.get_next(datetime)) # 2010-01-26 04:02:00
>>> print(iter.get_next(datetime)) # 2010-01-30 04:02:00
>>> print(iter.get_next(datetime)) # 2010-02-02 04:02:00
>>>
>>> iter = croniter('2 4 1 * wed', base) # 04:02 on every Wednesday OR on 1st day of month
>>> print(iter.get_next(datetime)) # 2010-01-27 04:02:00
>>> print(iter.get_next(datetime)) # 2010-02-01 04:02:00
>>> print(iter.get_next(datetime)) # 2010-02-03 04:02:00
>>>
>>> iter = croniter('2 4 1 * wed', base, day_or=False) # 04:02 on every 1st day of the month if it is a Wednesday
>>> print(iter.get_next(datetime)) # 2010-09-01 04:02:00
>>> print(iter.get_next(datetime)) # 2010-12-01 04:02:00
>>> print(iter.get_next(datetime)) # 2011-06-01 04:02:00
>>>
>>> iter = croniter('0 0 * * sat#1,sun#2', base) # 1st Saturday, and 2nd Sunday of the month
>>> print(iter.get_next(datetime)) # 2010-02-06 00:00:00
>>>
>>> iter = croniter('0 0 * * 5#3,L5', base) # 3rd and last Friday of the month
>>> print(iter.get_next(datetime)) # 2010-01-29 00:00:00
>>> print(iter.get_next(datetime)) # 2010-02-19 00:00:00
All you need to know is how to use the constructor and the get_next
method, the signature of these methods are listed below::
>>> def __init__(self, cron_format, start_time=time.time(), day_or=True)
croniter iterates along with cron_format from start_time.
cron_format is min hour day month day_of_week, you can refer to
http://en.wikipedia.org/wiki/Cron for more details. The day_or
switch is used to control how croniter handles day and day_of_week
entries. Default option is the cron behaviour, which connects those
values using OR. If the switch is set to False, the values are connected
using AND. This behaves like fcron and enables you to e.g. define a job that
executes each 2nd Friday of a month by setting the days of month and the
weekday.
::
>>> def get_next(self, ret_type=float)
get_next calculates the next value according to the cron expression and
returns an object of type ret_type. ret_type should be a float or a
datetime object.
Supported added for get_prev method. (>= 0.2.0)::
>>> base = datetime(2010, 8, 25)
>>> itr = croniter('0 0 1 * *', base)
>>> print(itr.get_prev(datetime)) # 2010-08-01 00:00:00
>>> print(itr.get_prev(datetime)) # 2010-07-01 00:00:00
>>> print(itr.get_prev(datetime)) # 2010-06-01 00:00:00
You can validate your crons using is_valid class method. (>= 0.3.18)::
>>> croniter.is_valid('0 0 1 * *') # True
>>> croniter.is_valid('0 wrong_value 1 * *') # False
About DST
Be sure to init your croniter instance with a TZ aware datetime for this to work!
Example using pytz::
>>> import pytz
>>> tz = pytz.timezone("Europe/Paris")
>>> local_date = tz.localize(datetime(2017, 3, 26))
>>> val = croniter('0 0 * * *', local_date).get_next(datetime)
Example using python_dateutil::
>>> import dateutil.tz
>>> tz = dateutil.tz.gettz('Asia/Tokyo')
>>> local_date = datetime(2017, 3, 26, tzinfo=tz)
>>> val = croniter('0 0 * * *', local_date).get_next(datetime)
Example using python built in module::
>>> from datetime import datetime, timezone
>>> local_date = datetime(2017, 3, 26, tzinfo=timezone.utc)
>>> val = croniter('0 0 * * *', local_date).get_next(datetime)
About second repeats
Croniter is able to do second repetition crontabs form and by default seconds are the 6th field::
>>> base = datetime(2012, 4, 6, 13, 26, 10)
>>> itr = croniter('* * * * * 15,25', base)
>>> itr.get_next(datetime) # 4/6 13:26:15
>>> itr.get_next(datetime) # 4/6 13:26:25
>>> itr.get_next(datetime) # 4/6 13:27:15
You can also note that this expression will repeat every second from the start datetime.::
>>> croniter('* * * * * *', local_date).get_next(datetime)
You can also use seconds as first field::
>>> itr = croniter('15,25 * * * * *', base, second_at_beginning=True)
About year
Croniter also support year field.
Year presents at the seventh field, which is after second repetition.
The range of year field is from 1970 to 2099.
To ignore second repetition, simply set second to 0 or any other const::
>>> base = datetime(2012, 4, 6, 2, 6, 59)
>>> itr = croniter('0 0 1 1 * 0 2020/2', base)
>>> itr.get_next(datetime) # 2020 1/1 0:0:0
>>> itr.get_next(datetime) # 2022 1/1 0:0:0
>>> itr.get_next(datetime) # 2024 1/1 0:0:0
Support for start_time shifts
See https://github.com/kiorky/croniter/pull/76, You can set start_time=, then expand_from_start_time=True for your generations to be computed from start_time instead of calendar days::
>>> from pprint import pprint
>>> iter = croniter('0 0 */7 * *', start_time=datetime(2024, 7, 11), expand_from_start_time=True);pprint([iter.get_next(datetime) for a in range(10)])
[datetime.datetime(2024, 7, 18, 0, 0),
datetime.datetime(2024, 7, 25, 0, 0),
datetime.datetime(2024, 8, 4, 0, 0),
datetime.datetime(2024, 8, 11, 0, 0),
datetime.datetime(2024, 8, 18, 0, 0),
datetime.datetime(2024, 8, 25, 0, 0),
datetime.datetime(2024, 9, 4, 0, 0),
datetime.datetime(2024, 9, 11, 0, 0),
datetime.datetime(2024, 9, 18, 0, 0),
datetime.datetime(2024, 9, 25, 0, 0)]
>>> # INSTEAD OF THE DEFAULT BEHAVIOR:
>>> iter = croniter('0 0 */7 * *', start_time=datetime(2024, 7, 11), expand_from_start_time=False);pprint([iter.get_next(datetime) for a in range(10)])
[datetime.datetime(2024, 7, 15, 0, 0),
datetime.datetime(2024, 7, 22, 0, 0),
datetime.datetime(2024, 7, 29, 0, 0),
datetime.datetime(2024, 8, 1, 0, 0),
datetime.datetime(2024, 8, 8, 0, 0),
datetime.datetime(2024, 8, 15, 0, 0),
datetime.datetime(2024, 8, 22, 0, 0),
datetime.datetime(2024, 8, 29, 0, 0),
datetime.datetime(2024, 9, 1, 0, 0),
datetime.datetime(2024, 9, 8, 0, 0)]
Testing if a date matches a crontab
Test for a match with (>=0.3.32)::
>>> croniter.match("0 0 * * *", datetime(2019, 1, 14, 0, 0, 0, 0))
True
>>> croniter.match("0 0 * * *", datetime(2019, 1, 14, 0, 2, 0, 0))
False
>>>
>>> croniter.match("2 4 1 * wed", datetime(2019, 1, 1, 4, 2, 0, 0)) # 04:02 on every Wednesday OR on 1st day of month
True
>>> croniter.match("2 4 1 * wed", datetime(2019, 1, 1, 4, 2, 0, 0), day_or=False) # 04:02 on every 1st day of the month if it is a Wednesday
False
Testing if a crontab matches in datetime range
Test for a match_range with (>=2.0.3)::
>>> croniter.match_range("0 0 * * *", datetime(2019, 1, 13, 0, 59, 0, 0), datetime(2019, 1, 14, 0, 1, 0, 0))
True
>>> croniter.match_range("0 0 * * *", datetime(2019, 1, 13, 0, 1, 0, 0), datetime(2019, 1, 13, 0, 59, 0, 0))
False
>>> croniter.match_range("2 4 1 * wed", datetime(2019, 1, 1, 3, 2, 0, 0), datetime(2019, 1, 1, 5, 1, 0, 0))
# 04:02 on every Wednesday OR on 1st day of month
True
>>> croniter.match_range("2 4 1 * wed", datetime(2019, 1, 1, 3, 2, 0, 0), datetime(2019, 1, 1, 5, 2, 0, 0), day_or=False)
# 04:02 on every 1st day of the month if it is a Wednesday
False
Gaps between date matches
For performance reasons, croniter limits the amount of CPU cycles spent attempting to find the next match.
Starting in v0.3.35, this behavior is configurable via the max_years_between_matches parameter, and the default window has been increased from 1 year to 50 years.
The defaults should be fine for many use cases.
Applications that evaluate multiple cron expressions or handle cron expressions from untrusted sources or end-users should use this parameter.
Iterating over sparse cron expressions can result in increased CPU consumption or a raised CroniterBadDateError exception which indicates that croniter has given up attempting to find the next (or previous) match.
Explicitly specifying max_years_between_matches provides a way to limit CPU utilization and simplifies the iterable interface by eliminating the need for CroniterBadDateError.
The difference in the iterable interface is based on the reasoning that whenever max_years_between_matches is explicitly agreed upon, there is no need for croniter to signal that it has given up; simply stopping the iteration is preferable.
This example matches 4 AM Friday, January 1st. Since January 1st isn't often a Friday, there may be a few years between each occurrence. Setting the limit to 15 years ensures all matches::
>>> it = croniter("0 4 1 1 fri", datetime(2000,1,1), day_or=False, max_years_between_matches=15).all_next(datetime)
>>> for i in range(5):
... print(next(it))
...
2010-01-01 04:00:00
2016-01-01 04:00:00
2021-01-01 04:00:00
2027-01-01 04:00:00
2038-01-01 04:00:00
However, when only concerned with dates within the next 5 years, simply set max_years_between_matches=5 in the above example.
This will result in no matches found, but no additional cycles will be wasted on unwanted matches far in the future.
Iterating over a range using cron
Find matches within a range using the croniter_range() function. This is much like the builtin range(start,stop,step) function, but for dates. The step argument is a cron expression.
Added in (>=0.3.34)
List the first Saturday of every month in 2019::
>>> from croniter import croniter_range
>>> for dt in croniter_range(datetime(2019, 1, 1), datetime(2019, 12, 31), "0 0 * * sat#1"):
>>> print(dt)
Hashed expressions
croniter supports Jenkins-style hashed expressions, using the "H" definition keyword and the required hash_id keyword argument. Hashed expressions remain consistent, given the same hash_id, but different hash_ids will evaluate completely different to each other. This allows, for example, for an even distribution of differently-named jobs without needing to manually spread them out.
>>> itr = croniter("H H * * *", hash_id="hello")
>>> itr.get_next(datetime)
datetime.datetime(2021, 4, 10, 11, 10)
>>> itr.get_next(datetime)
datetime.datetime(2021, 4, 11, 11, 10)
>>> itr = croniter("H H * * *", hash_id="hello")
>>> itr.get_next(datetime)
datetime.datetime(2021, 4, 10, 11, 10)
>>> itr = croniter("H H * * *", hash_id="bonjour")
>>> itr.get_next(datetime)
datetime.datetime(2021, 4, 10, 20, 52)
Random expressions
Random "R" definition keywords are supported, and remain consistent only within their croniter() instance.
>>> itr = croniter("R R * * *")
>>> itr.get_next(datetime)
datetime.datetime(2021, 4, 10, 22, 56)
>>> itr.get_next(datetime)
datetime.datetime(2021, 4, 11, 22, 56)
>>> itr = croniter("R R * * *")
>>> itr.get_next(datetime)
datetime.datetime(2021, 4, 11, 4, 19)
Note about Ranges
Note that as a deviation from cron standard, croniter is somehow laxist with ranges and will allow ranges of Jan-Dec, & Sun-Sat in reverse way and interpret them as following examples:
- ``Apr-Jan``: from April to january
- ``Sat-Sun``: Saturday, Sunday
- ``Wed-Sun``: Wednesday to Saturday, Sunday
Please note that if a /step is given, it will be respected.
Note about Sunday
Note that as a deviation from cron standard, croniter like numerous cron implementations supports SUNDAY to be expressed as DAY7, allowing such expressions:
- ``0 0 * * 7``
- ``0 0 * * 6-7``
- ``0 0 * * 6,7``
Keyword expressions
Vixie cron-style "@" keyword expressions are supported. What they evaluate to depends on whether you supply hash_id: no hash_id corresponds to Vixie cron definitions (exact times, minute resolution), while with hash_id corresponds to Jenkins definitions (hashed within the period, second resolution).
============ ============ ================
Keyword No hash_id With hash_id
============ ============ ================
@midnight 0 0 * * * H H(0-2) * * * H
@hourly 0 * * * * H * * * * H
@daily 0 0 * * * H H * * * H
@weekly 0 0 * * 0 H H * * H H
@monthly 0 0 1 * * H H H * * H
@yearly 0 0 1 1 * H H H H * H
@annually 0 0 1 1 * H H H H * H
============ ============ ================
Overview
croniters intends to be a drop-in replacement for the python croniter package, implemented in Rust.
[!IMPORTANT] I say "intends to" because while the test suite is ported and should cover the majority of cases, there may be subtle differences between rust and python implementations.
Why?
croniter is no longer maintained and everyone vendoring means more collective toil.
rust already has good datetime support and rust types are great for this sort of pedantry.
Project Roadmap
- port everything to rust incrementally, maintaining the public
croniterAPI. - consider deprecating things that don't make coherent sense.
Phase 0: Setup
- get pyo3 setup
- port test suite from croniter
- move constants and simple utils to rust
Phase 1: Core Functionality
Initial implementation focusing on the most commonly used features:
- Basic cron expression parsing
get_next()/get_prev()methods- DateTime/timestamp conversions
- Support for basic cron formats (5-field Unix cron)
Phase 2: Extended Features
Add support for:
- Second and year fields (6 and 7-field formats)
- Hash-based expressions
- Range iteration (
croniter_range) - All croniter expression aliases (@yearly, @monthly, etc)
Phase 3: Full Compatibility
Complete feature parity with croniter:
- All edge cases and special syntax
- Full timezone support
- Complete test suite port
[!INFO] Not seeing something important in the roadmap? Open an issue and I'll add it!
(Planned) Technical Stack
- Cron Parsing:
croncrate - Python Bindings:
pyo3 - Build System:
maturin
Contributing
Please do - I am only learning rust and pyo3! See the justfile for details on running locally.
License
Same as croniter - MIT License
Acknowledgements
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file croniters-0.2.0.tar.gz.
File metadata
- Download URL: croniters-0.2.0.tar.gz
- Upload date:
- Size: 61.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21aa1bae413589145afa957dcea3b7f30d6244dfd298f9699eca6c4823a21e8c
|
|
| MD5 |
fd6f61d22ff50f3478ccaf4293002301
|
|
| BLAKE2b-256 |
060262edaef3a49ce8adf2d93193026277633fcd8777d7a07b5eb2f3d471e261
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 418.6 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14368fc2fdcde424e122171fdba158dc7a39a64a6864cea8be98f7152327bb62
|
|
| MD5 |
9b94257c6ab1b897b58fd875c3342458
|
|
| BLAKE2b-256 |
fb35e22f46f8eec193437afce380fe1360a5f4c4cc6db88807c2c312323dd052
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 443.4 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec100391478afc5aa366eec2e8aa02ca8c3e5971e8c5c256f8ac7e297b918162
|
|
| MD5 |
65af38815ba7895236afd1a7dc5fa698
|
|
| BLAKE2b-256 |
00ed2a7f25e75b74b22ecda9f5bafbdcdd500aad90c864c0479bea152479b8a0
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 518.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9d8a71032d4543ea49f5c75fcd2ec90a5db4924ca8f726c050565fb8231519a
|
|
| MD5 |
2d8c76bbd73b594bf63f17e3fca49bc9
|
|
| BLAKE2b-256 |
037f5c7e9534881c2ca03aa9954cf754bbb79c2f4215ce1ef1428e308c7247cc
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 425.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d7b7f2933c300d3defe931500c8222dbb42b63b7bf49445f72f34e1f00d14d2
|
|
| MD5 |
2e65da82fc0217ab061e4b826f59e021
|
|
| BLAKE2b-256 |
f883fdf495e49b1c0a8edd53299173727acc7a6309bd76239afb1b78482cd1f9
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 252.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60f9bfb54f21553b8669f7770f0584b4b675c66ff974866b1ea4d1e274b07fe8
|
|
| MD5 |
a99ba4e6961e71e2dd89d217f881f6d5
|
|
| BLAKE2b-256 |
bbf2d814286cb5b908515776d94e9c4281b00644f791f6443a4e079e90d6ddba
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 288.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3b3d9cd6a13bd07e5723b6c03ff4109bc24e1a864c93f864ad142870c665174
|
|
| MD5 |
3a98a8973a91cd7d895d0371917542b9
|
|
| BLAKE2b-256 |
5845961cce616a720a340c4bacb3261bbf479d159111792a9cd7549be940fa91
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 307.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ed4e1e1184bf7e3b7b64ada50746ac6a8fab45f5f7a1c99f33db651e9dde411
|
|
| MD5 |
ef72e610f185f04660af71bcf772bda5
|
|
| BLAKE2b-256 |
72c43ee52a4cd301c6eb8016457db8e17c876954d40f5846b8b1f1aac8dc6016
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 259.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
063a8d4a8d8f8a8d7675d0c5b978565345959f4eda1f354192f5360b33e95ee5
|
|
| MD5 |
046fd66bb824fe92c0811d9f79e8381d
|
|
| BLAKE2b-256 |
5e406e35aab0f469c5a731cd2983f7225f84f350e6bf2154165967e0672dbb1a
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 251.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e84bd2a65c77fb2d39550f68a3094f9eba76143f87c3a65914bcf18ce5db9584
|
|
| MD5 |
d875e4b00c79eaed5b48ddf751e52bf2
|
|
| BLAKE2b-256 |
0e9bf7b7649f303f6cfb6f7a781740f6e2da08e5962861d16d4186a1b78bfcd9
|
File details
Details for the file croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: croniters-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 266.1 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79a0c08648714c79f88c7198f4c26f421d676994c488f8d38d61ab478911a040
|
|
| MD5 |
04b2a9d84c3fe3f74682969407e00fe6
|
|
| BLAKE2b-256 |
4700a7fc1037e5aa3de9818fd215a4aa4ae16f2adecb0b2f2ed2df33b4f5b224
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 418.4 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a933c25533a1d334ffa2c1b142929f48c560264f017862e3f380f0bb18f89a
|
|
| MD5 |
6d8e3a095907579ca38423e28c59e408
|
|
| BLAKE2b-256 |
999678fef2de58ca9a0282857a0ea531673d758d7d5ee592be1187a247f93639
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 443.4 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21168e5dd3f3a0415cd68fae29c8c68888d7c831c76628552e12f2bbb276fa43
|
|
| MD5 |
6af179b9a1b0bb8aa38fdcc7c2e87939
|
|
| BLAKE2b-256 |
325bd51b6d76c2f7abce8297a8b0a5597225ebaadba991aab3791d87a20b1922
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 518.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02ecbdb78508ce3460858f11401b3a3595c5985e78b5a210c448e64938987bf4
|
|
| MD5 |
4a0cd943fbeb3877e861b6cfda8c3774
|
|
| BLAKE2b-256 |
e8ddb0beaf162013e0425d123f4d97be82af321d19c9c86b84fa59ce45aefd10
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 425.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19d747d07cd6061a0814e42d0e6a96567b76b7cfbb7ed932e58aaf7599e370be
|
|
| MD5 |
5713ec3ecddecc9203f90db7af367bcb
|
|
| BLAKE2b-256 |
38db5d505f6dbf179d6256b727448da5ed3725ffbcab86c5c221eaad8dc5ccea
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 287.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5c24b504bb47ee9b1046bbf97c44ab73e9902bfa19057c5067b287a726386b1
|
|
| MD5 |
1a82ae4215f5e80f815cdf108bf763e6
|
|
| BLAKE2b-256 |
754121f43ae005185dfc7347d154116c9783ee061c7349fdbf723a5b23007e90
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 308.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da8e322a1e0207450b0395746300414b40efb8aa7381084ce9923d64846b3ee2
|
|
| MD5 |
56752c7ffbd1a8f5d35c759b2a83c102
|
|
| BLAKE2b-256 |
3b22f0ccc8b829911b04f546456e57881ab9d546be9a2e485acbc5bca0470b59
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 259.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa0a2552952327d0984bd7414eb7e70b4bfc343de065cb0e8a902345546d6fd8
|
|
| MD5 |
e268513f4cbbf35765a7960e6165f57e
|
|
| BLAKE2b-256 |
5aa80bb8e26955dd5da512ee852327dc3e8464cc0e88bcfd167657462c52963a
|
File details
Details for the file croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 251.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85ea00d76857b91bbc72c0916c5312de76d18499c06201e9f853811dc4f15b95
|
|
| MD5 |
80e78929e17735d73df0dfdca5cf951b
|
|
| BLAKE2b-256 |
c1eb303e814e9c32fc5557a3b2a838f90f5655af13828e208e3109a5c70bfc6e
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 417.3 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de78fc84cc8baa5c1312c05575a14f98b76b790918891c971822c3bbd10049ed
|
|
| MD5 |
44ecc3d118d7ce107a39f1c21d3c3aff
|
|
| BLAKE2b-256 |
3acbd70037b852ef09a5bf10b14de44b2b9e51c07878a14698afe6bda97a6bb6
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 442.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0dba2f7bc5e23ef2e3bb263d7db84a565efb7216f945cdf40cc686511bf9d34
|
|
| MD5 |
f5cc36ef14e35b2ecb5df0035ffa3592
|
|
| BLAKE2b-256 |
d82ef6cfff886fcb9748567c49b651de756dcd0ee376680c8e9165d41e62e5f2
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 516.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26474e08004fa40cd69fa24f42217ffbab6c1d701f4a29711289545299a37853
|
|
| MD5 |
bbdb628a3801e85c7113894477c10493
|
|
| BLAKE2b-256 |
64f1cd1537c0905f8f69bec847b32ff093b90fd4ac6286dfd145339164f2893f
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdf510901352ceac120375eebba0736178d89f2c73bad9034c49a410c765d9f2
|
|
| MD5 |
5424a76f62215d6ccf784df313b933d2
|
|
| BLAKE2b-256 |
7cae4341d812dcbce73192d938d976e3ce894f3729d89af3c84248341fd8371e
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 285.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf98eff415e34808eda0977b2a7297f21c0cf70ba96bf101d858f2862bf65feb
|
|
| MD5 |
731b830cdefa25625978f8f86fc836dc
|
|
| BLAKE2b-256 |
55049f6cd2e2b5a8cf617ce2d30038f36a1fd3909c97ed219fe6d62eefc999fa
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 306.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b89168a9b460f0841afe165c0485ba0874646dbad7380b340b1a7301d0806e4
|
|
| MD5 |
0765feee71c81122fa06b2ad4e6b2199
|
|
| BLAKE2b-256 |
959e0ffd4a5c055d9d1d98d3b82ae17ac332d2bd48b5cf14760ece63df1caee4
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 257.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f47d59fc68b8b09f8f8554d95fe5659a019813573420009dc2332dfe56b9d71
|
|
| MD5 |
f87265a32d512ef471fea85fceaa81bc
|
|
| BLAKE2b-256 |
e6be72aad29e45db02273e4112b08ebd1cc67df650d4039b9c55dfc352d72486
|
File details
Details for the file croniters-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 249.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29618e9caad915a6cf0536ef03cc8eceb0dd772aee6b2201da9afc694a5b413e
|
|
| MD5 |
4cea1108f0332a35c36c5f658bef7e20
|
|
| BLAKE2b-256 |
56786ec3235bf732e421848e2f125ee2ae61d28682975d2beea8865f49558120
|
File details
Details for the file croniters-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 117.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0456605ad8b5fd9d669c0614d14d55ae283c78a16725fc0182576d385b40b43
|
|
| MD5 |
4bddfe518de463b3d510c1da1417651b
|
|
| BLAKE2b-256 |
e474771b366707c008600df1bcdbda69a438781c9fbc55770b732cbc15e03a72
|
File details
Details for the file croniters-0.2.0-cp313-cp313-win32.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-win32.whl
- Upload date:
- Size: 112.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b773f63de10c180de175789c01061e219bddde53241485dfb45c7cf1110edcbd
|
|
| MD5 |
4b693c27fa4ad4c71fe9dff46d3a6c81
|
|
| BLAKE2b-256 |
230f4a1bfb2ad0d2bf0761881d83c9e18239b4c471e91c0ad365a6c84ab59bc2
|
File details
Details for the file croniters-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 417.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
265913a7d000793d7cc18b30a04830bcdd28b8f061dde2661d2f7bb0a73c9a21
|
|
| MD5 |
206c3da4e4e601dd8ab9c37df5db514a
|
|
| BLAKE2b-256 |
753a9f8b48b76b625c7e48a7d4213e139d258bf871e699a66b57ada2d11764fd
|
File details
Details for the file croniters-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 442.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0a96188ec41db5b95d5da078885e49f682648c7404a9ee8ecd0085e74567531
|
|
| MD5 |
f416cc84679354bea59fab2f5154e9ea
|
|
| BLAKE2b-256 |
383f29ce25945a2f89880761fb6e9fe89d00d0a0c21a7f3f024f69d7ee7e42f0
|
File details
Details for the file croniters-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 516.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fded16c60e94aa9a25a776c29c883884878168be91a209a75a7b0e29f225cfe8
|
|
| MD5 |
7370ce900747ad8abc7a485b120f0e67
|
|
| BLAKE2b-256 |
d5e626f6369d30370ed3654c9ababd2397eef13b85e2a27415f8ffd159ca5cf1
|
File details
Details for the file croniters-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9665c447f90326da7343a407b7b3ebab9342e058c5478cdc0cc34128b3af522b
|
|
| MD5 |
692c7aeadd749aa6b50fbc13efd1764b
|
|
| BLAKE2b-256 |
827f6ce227ec09e4bd8fe06e40d4a724226996de0102faab54aaab18e130100d
|
File details
Details for the file croniters-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 250.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc5b9ca7715eef21847a5f32b56c9a619b2d9a23af14d6b5a34b25af742d7035
|
|
| MD5 |
b37c7c7e1dadc5db308ab340e5968f15
|
|
| BLAKE2b-256 |
6dd2609e8e30564092635a3dbefe82aa9716b249d190dbbf2067e33944d7d327
|
File details
Details for the file croniters-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 285.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6796bc59df9ac9a6bcb41727e28a94c014d7cbfb63e48d6653016218577a5c5
|
|
| MD5 |
8ebcffbaccc0a307c41d4a66e83ba2ec
|
|
| BLAKE2b-256 |
6b71c59746b7e0c79d3843d41c3db69abf83725a9befc59cc773e2563d4bef7b
|
File details
Details for the file croniters-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 307.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
090ebd7777284f9fbfbeac7c2dd0a49ba3d03aa5690009618dee78f91a30abe8
|
|
| MD5 |
c098a649133657f24d06a42544315df8
|
|
| BLAKE2b-256 |
43075e32879ad9f45a62426873e31e51a9b825d29f93a046aa338f53e2529553
|
File details
Details for the file croniters-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 258.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f36805f458c92fa130909326d7e3aeb56f297e2d9f996b8ece1109e43f25bad8
|
|
| MD5 |
95f3226fc6e7bfd52e8460aad554c1b3
|
|
| BLAKE2b-256 |
69b0d0f4dcf5530aa5d3e8d0ba7d4c7a099c2a7dab02dbfbc057699cf6b14e00
|
File details
Details for the file croniters-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 250.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74a01b69545a97fe01d0f016f36ef2d7d3da6ef7236291a19d230fd8cb566040
|
|
| MD5 |
791846f5f3c1346cc7d7509142195029
|
|
| BLAKE2b-256 |
4af396c767128c96ba6df01425168ca975248083a0fb4d465a55feb36ffa7ffc
|
File details
Details for the file croniters-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d300e7d7338f7fdeedbbf8d29cf5fa3b81524a11ee44d700e799f833d52672b
|
|
| MD5 |
2d48647dd8608ca1b1070ceceb0d4a60
|
|
| BLAKE2b-256 |
611a3d39ae141e4fc77f42c18a20495e50785939dab06ea5f325fad5e37c6f7e
|
File details
Details for the file croniters-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 220.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dff4fd24250b8e9d097a9d7ee4a6aae868d4c9697143357c1d13b950525eca05
|
|
| MD5 |
7c31180b8803bec5e3bfe79f0bb63181
|
|
| BLAKE2b-256 |
cd2aee4edaa606ace879f367ac03a3afd79eca3768f71b5a88d9a31e7766254f
|
File details
Details for the file croniters-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 224.8 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa920eaa9ec32d73cb0f73c23abe10a6afb2074d3b7df9e07c7c7177c3e2a7a3
|
|
| MD5 |
d1e05b5475c1d4888724dafc30045d90
|
|
| BLAKE2b-256 |
7ac22740477c70bf68e498abdc3a3b3ec659d17ff5787dfb40715223f13957f5
|
File details
Details for the file croniters-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 117.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c97d53c96d54b3a28d129b7858aa393aa349209f84dc9716f41fa4cd42fee27
|
|
| MD5 |
45916d82e84d26fdd3d9c1dde8c5f93f
|
|
| BLAKE2b-256 |
cc1c2dbce794f638c1f69f9b27745c3e4f8b490c3f394a11e462ba0e92e81f48
|
File details
Details for the file croniters-0.2.0-cp312-cp312-win32.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-win32.whl
- Upload date:
- Size: 112.3 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58a23929716a832e04ba71aafc783251c912e9e25a2e59345e601ac155dc50da
|
|
| MD5 |
d076442966099887acae8887622905f6
|
|
| BLAKE2b-256 |
3d1ec70f65b8e0b546382d7a2dfe7d8a1bb738b5e7a2857e604ef7ecca2fed2a
|
File details
Details for the file croniters-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 417.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8765c297845acc90a1cd270b58c41036df4f5991dbb6343ea37ec6d6caee0a87
|
|
| MD5 |
1306be3e60a012714f59ab98fde6ec01
|
|
| BLAKE2b-256 |
51e7afdbde19ad478b7de89b07893b14e00903e8e63a06274e193f50bba26729
|
File details
Details for the file croniters-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 442.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b18699123c89498d3b986332827ad6f3ba3b6820c93c093fd097a9e052f4b0db
|
|
| MD5 |
b985285d3f50d420cf92ea142d070f69
|
|
| BLAKE2b-256 |
e3d05950943d57429dee111ba1971563468e46bf14eed89297b6e0338f1ac21d
|
File details
Details for the file croniters-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 516.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62166fc256a7efa9021fd77cbe736624573418ef35ab8d04c3aca8c1a90d26c8
|
|
| MD5 |
bbc8b87533fd74b930ed26daa25fa49d
|
|
| BLAKE2b-256 |
5f9f5d7049581fde7257b7b83c55c72b07c9d4dec3f8c10f91d4be82cacbe277
|
File details
Details for the file croniters-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd1ef3c9036e0c8aebfcd4670c5bef37e17305efae71de538e4102c406853735
|
|
| MD5 |
03a97bb25f2a01d92db825a479c6435a
|
|
| BLAKE2b-256 |
d19c955ccdbdc349521b7fd958f591d0570b0319b860a91fb3eb6a9a61f8b101
|
File details
Details for the file croniters-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 250.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fad7019c4c713c323f500f4de50c3c0daca6d044834922a35f18ab68204f1f8
|
|
| MD5 |
ce50c9039888c5082e40cc68abdbee18
|
|
| BLAKE2b-256 |
fad8e5f437f6f53f90178a70674c29cf08f886120cdaae3faaad0072ff65b274
|
File details
Details for the file croniters-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 285.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4f2b85fb8d197c098fc238e2ce733a396426af86c2a9f7b45c0cddaef8dad4d
|
|
| MD5 |
46cc67b69510ef24499b4c735fb6d23f
|
|
| BLAKE2b-256 |
b609c63aba5390d255e12fb996b3a811ee676df7c3eefb517504943a9968bd03
|
File details
Details for the file croniters-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 307.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f12e81d1be648d7949c4993b8ebd9da292bcdb07869619cd3af9a80f2c4a03d5
|
|
| MD5 |
582e199dc5d57bf0ea27a8fead03b1a1
|
|
| BLAKE2b-256 |
49a0800db019df523227f6888f8521a19cdcf52a89394f7e0198c406a5a81d9c
|
File details
Details for the file croniters-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 258.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9264aa6d201090bc8048c6264297ea9e82a0a213aa0502f5124d83a2f692f6bd
|
|
| MD5 |
9e3e627d08009d3947166163cf92fddb
|
|
| BLAKE2b-256 |
dd7a4422bd9742464482505592e6b6bd87acc8c814c08d421ad6fa199de34928
|
File details
Details for the file croniters-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 250.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5720574280260a4f51a4822fcd6bdc569625ea54ba9045a410ceda27c8d108d
|
|
| MD5 |
eecc73988ef70b0e7cf4f3b10e31a734
|
|
| BLAKE2b-256 |
887b6a33debfdbfe21fd759dbf3c07eec2594e80929670ec221d1a7dab84f360
|
File details
Details for the file croniters-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c555a0bdc7e3017526a12e2e899f26e93e5ac993c2e00263694a290f239fd3
|
|
| MD5 |
6d4d68710bfe3c9611cdb84cb74a7f3a
|
|
| BLAKE2b-256 |
4ba6fbae5b35bffca515388833b0b3de5cd55694f2749796ae2ed764e912a88b
|
File details
Details for the file croniters-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 220.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8103387f2ce2885de9d9c2dd314d8f760f304672c92728a80772119c98021104
|
|
| MD5 |
8112c6e23183dbc3a95ae6fb9dd2a464
|
|
| BLAKE2b-256 |
4d4b03fbd19b348ec1286013121a305a4df528320f8c481c1d41e432d52f1d01
|
File details
Details for the file croniters-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 224.9 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7f2fce6db7466ac592c22c442ce9d37ec8c5c736a82cbf43c3a4cdf405bc5f7
|
|
| MD5 |
47e2cb815093782b889081416a337d29
|
|
| BLAKE2b-256 |
515381882d5e8d2d25a5f76f60a3066b9ad5cec3c3d3c481fd211ee15c897921
|
File details
Details for the file croniters-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 117.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
703bf17d1278ac0b58c04eeadad438674f77b298370efa42d1e1cc4b2e65d3cd
|
|
| MD5 |
6863f17cfe3476ab0626aa1f03882e42
|
|
| BLAKE2b-256 |
9f8f7f02d01c4b329cb728f5ce22662466b9f949b6ba50e1efb5b1a41da98ffa
|
File details
Details for the file croniters-0.2.0-cp311-cp311-win32.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-win32.whl
- Upload date:
- Size: 113.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35bd7599e4690e6e0abf07331dcae4fcd5a21c23c09995def2197227e8c9b391
|
|
| MD5 |
9fdcdf7d62b6c39d9b42ebea6b25c375
|
|
| BLAKE2b-256 |
e5299eb0f98db863f71d200e2b63b39ea88f99bc953a081e8005becd37cdb9f7
|
File details
Details for the file croniters-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 418.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67cffed01be1e868344d8835a0d506ebf0002b15a405d788db79e1ee126de890
|
|
| MD5 |
5d690f12712a3da8c752315ca29465bb
|
|
| BLAKE2b-256 |
44f6d848f9729cec97a8c4c56a635a3ada0464c8c905df9b93cbb00fb0c0e261
|
File details
Details for the file croniters-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 443.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db7ab1c353966515422903ffe561bc1a8b551508a45edc6989703a934f16f228
|
|
| MD5 |
1444f6406e364ad339ceffa5c50145e0
|
|
| BLAKE2b-256 |
61d12286e6a0f92c8e3052b18cfb1f87b31a5fde84f19ab7a6da18abcc8f32a4
|
File details
Details for the file croniters-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 518.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22c529aec89eedc89e1eae140d48ec6eefefb7a1d6ae93251d11e0289788f691
|
|
| MD5 |
93ec0976726b8b54afb57984db960e81
|
|
| BLAKE2b-256 |
b12fbb8cdeff3c5a969ea624280e895188e846491e91b5494bf7ac229cd640b2
|
File details
Details for the file croniters-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 425.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bc406107b6a7e4423b1abdd58a0bdee7471ebd127692851106a6e3b94fbe016
|
|
| MD5 |
afbc64efeda2b8c06c43753f6b3255db
|
|
| BLAKE2b-256 |
9f26cfa18924bf8adb2505fdcd0badbada366e3d4990aa76f62aacbb97771423
|
File details
Details for the file croniters-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 251.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37eb960e6dd950558a0b06043596f8680e89fb2db27003e2557074aeedc27597
|
|
| MD5 |
0983caa77912ec613b0ed758523978da
|
|
| BLAKE2b-256 |
376078d82fca73d1fc060abbe37ca0ea85c32aefb18c1844b6201ed2567606e0
|
File details
Details for the file croniters-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 286.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb5cc9085323d888059bc1dc758bcf53f6af75f1f15b63609bd85741dbf8a2b1
|
|
| MD5 |
ec3e46dfe1c74b9b802e31e1ba6fcc86
|
|
| BLAKE2b-256 |
ba9de433e4198b4c64002994473975922c49475878f97cc2fa00bcedde40c357
|
File details
Details for the file croniters-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 307.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5d77dc301a9f5ae08872a560512cd532a53797b687fdf8c254b9926db0d6421
|
|
| MD5 |
12cd71bdf91e918f7701cc2178a7242f
|
|
| BLAKE2b-256 |
0d3abba7c0eb0da8511d3fe0935f6d637853999a15dd6229ea137b20e577c41a
|
File details
Details for the file croniters-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 259.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25fdf48b0112e75148da3f18ee84010cf435eaaa5526b4822fb9db328532e091
|
|
| MD5 |
d0c603e98e8907d2ed83f8a4ed565cad
|
|
| BLAKE2b-256 |
314f5d45bba757a57eb568cb9fc06abca2b02edd59ad2a0231688e0cd6932fd8
|
File details
Details for the file croniters-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 250.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81d81aa2d0d8559234423c713381b12745bfdc705b18ed9ede372173289bb207
|
|
| MD5 |
06bd5d5b8d1c0429588ee4419bf7b0b9
|
|
| BLAKE2b-256 |
4323b690bf28d46ef5d1df4764b6ca8b999259065cf8dbf62c9b4375421de1bc
|
File details
Details for the file croniters-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 265.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13c892cefec3d2216261a8e9143955be20893afe76d4e125b88b0db36012f537
|
|
| MD5 |
a688868a365dc052b608feacfe22a185
|
|
| BLAKE2b-256 |
a7ada6f93adf6cb89523d3bbcc01381428ae1975e1aa62315fec9fc8c32bf047
|
File details
Details for the file croniters-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 222.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a16b919e063370828605887899dfc6bd92a9eac5bb381bdfbabb401493cc69d0
|
|
| MD5 |
1927c1e33cb33fd01dc07e2f4c932996
|
|
| BLAKE2b-256 |
fa6d751e9260c3474e39d880c31fa884a78fa87e7bd98dcd7bdcc47360779009
|
File details
Details for the file croniters-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 226.4 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61a9a5c1440906b92452bbdd27425413dea1ed547064458fead112aceeb4f661
|
|
| MD5 |
9c7f4afefdabbb0664ba164001dfa6dc
|
|
| BLAKE2b-256 |
4d1ae789d6a4c6851e6ad49a7b41d25fc6ab7a3040d5c7ad858633d55dc5cf0a
|
File details
Details for the file croniters-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 117.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3af69c383dbdbff9ed0afe52013b3676a773bd48a9dfe6b765fcd7e016b89546
|
|
| MD5 |
c7f691b279fb28fc997e50a7e8dc063f
|
|
| BLAKE2b-256 |
852b831cf2349c6bc136b77ac3b7b9b3d22263b78a18a52f825e64fd55517c34
|
File details
Details for the file croniters-0.2.0-cp310-cp310-win32.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-win32.whl
- Upload date:
- Size: 113.3 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd5b3d2ed40125751698bd8ca1109c2c2b91b180f9b372697e33b868b074f4e0
|
|
| MD5 |
a9901616b9679fdd9e3c50fcc037c660
|
|
| BLAKE2b-256 |
18e8f638f5ab254e33506c6129b2cd7a8de3d8227377283d7cacb21fb8d0bcde
|
File details
Details for the file croniters-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 418.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d14b055345de93052eb91003588f42618f938760aed18ffacefce7bb4175720
|
|
| MD5 |
961e23b8f4a578e12c10795f62526de1
|
|
| BLAKE2b-256 |
dfdca200f0345036cb92d2550694749663135a7878a190b32475e5dd794d4d60
|
File details
Details for the file croniters-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 443.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
889e3e976cd4d9dd7d4fcdb6adc3e36944e05c1f4a3710e704d0fdddae9e0eb0
|
|
| MD5 |
8b5c2d1541916b408ec37a0ae0759baf
|
|
| BLAKE2b-256 |
8c48863d370b38da7704ece69628fab503dccd7afd9113712dcd6272bdf01cf7
|
File details
Details for the file croniters-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 518.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61a9d258adb03f7dda0c60dcd82cc4ce598a1885577745472efbe943779ea2bc
|
|
| MD5 |
df8a3b50ca29ffaad8fad14cdc458bec
|
|
| BLAKE2b-256 |
95afc0e8d8a170aad18067f72a72bbd5108ee61d6028117d6a1eacd1b1c4955a
|
File details
Details for the file croniters-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 425.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47223c84ecc7b486f3f128329d86113791f62d60e2c808c4ff9ebc154323d1de
|
|
| MD5 |
20c869315596d7c52436a315b2464b47
|
|
| BLAKE2b-256 |
7afcddf2c9eddab3b17b4ef4cfdc9634793491c3044d67714077eb08d2d828d4
|
File details
Details for the file croniters-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 251.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1f2b1f7ebe205deb96fad88fe274d0168a89cb301a1ae3a9199ec2319564c9d
|
|
| MD5 |
b5e5c1621bc56f9d0a57816cfd73db0e
|
|
| BLAKE2b-256 |
dc059dd5ba65b1605ead339cd2aaac02217a7a3e2957cd3ab97c75fdc8eec7a2
|
File details
Details for the file croniters-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 287.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95cbbacedfc1915e9eb3ff294d5c4a2df8eb34d422c8922bbef417f9de2fc485
|
|
| MD5 |
29f776752c44c25b477a0540468617c0
|
|
| BLAKE2b-256 |
739f589ef70af1a722fee3eb0b9e6567727a4cccbab1a9885f0c06d9ef6e61bf
|
File details
Details for the file croniters-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 307.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15c97a50cdf030c42b5dda9f50d5fbaa27d33b0027a633e413a069de1f3dcb3c
|
|
| MD5 |
fb5849ed18b9daf5d14423da8fb4ea47
|
|
| BLAKE2b-256 |
f1ec081f87cdac643354e557255743ac2e7bd42bd789529914fee50d51bc47c3
|
File details
Details for the file croniters-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 259.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddaaf3954e91add297a53e4815ecd310b2eb8b0e60d90f2dbae8976c6d399404
|
|
| MD5 |
b5cce31a0fc9f4ec3bba06ab97395f99
|
|
| BLAKE2b-256 |
c9984a6623f13efd768a975202ec5d4de1a1c46a785dc8a4131ae87ee4a7f067
|
File details
Details for the file croniters-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 251.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a1187c1316bb3e01d81b629bc1c6068213edb132ab227d68fa9ef1f35368434
|
|
| MD5 |
551054fa79ea72d545b8de264e8fbd1b
|
|
| BLAKE2b-256 |
b236bad5a9f26c13335fe347d10fdfa212e79e262bdce08afe1ea67f35501efd
|
File details
Details for the file croniters-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 265.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ebf313327cc106647a31e2c52469e24b753f80d023b8c2c4dd5f6ef5f9c6c4d
|
|
| MD5 |
3767edc6ff7f21097311258073a10150
|
|
| BLAKE2b-256 |
036abbe95fb97b9aad3b8cbd6be831306b399af9073743dc4ab4b0a730b1b333
|
File details
Details for the file croniters-0.2.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 117.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5afb8f55a567628b27bc936bd21ed51f10f925646860084623fc1fb30f398185
|
|
| MD5 |
1af5da4c826151acc0e58ab982876ea8
|
|
| BLAKE2b-256 |
cbce506e64f5ba4c6e2f465518efba09e338104ce388da8e300aba9458e3e045
|
File details
Details for the file croniters-0.2.0-cp39-cp39-win32.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-win32.whl
- Upload date:
- Size: 113.0 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10fb2ae7bcde36c3b6d9b13bb22a7e39e7181671838986025bd148fb393306bf
|
|
| MD5 |
b236c2587f6f5105cb6fbff62a8d3fd3
|
|
| BLAKE2b-256 |
324cdb48f70f504257ac8d89f345f144fe806248fa3a85550ae237449e8449ca
|
File details
Details for the file croniters-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 418.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6313d98a111c703362d42cfea617bc9ea246a35cf49d12126a60d8ad32aff9ab
|
|
| MD5 |
36b63a802651d7c28b73b3d0ef5182d9
|
|
| BLAKE2b-256 |
076c38a48569669e383aad9221e2a475e30c44523b7135f4b5747f1a79bfab6b
|
File details
Details for the file croniters-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 443.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1516732ce24e2097bb724f05b4e43c86fbd8109825fb64a9a60678e0e09aa8b4
|
|
| MD5 |
b0e4b398bc57494ad50d2a5197757f52
|
|
| BLAKE2b-256 |
c617ee75aedb0922860d39d910eddeed1e71a99ef152e7415cc39e2104d91a9b
|
File details
Details for the file croniters-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 518.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ebfe4cd23b818acc4ef92b7f6b457959be4778989e2aeab8da602875c234a25
|
|
| MD5 |
df7a01668145956ef19543f4fd130f53
|
|
| BLAKE2b-256 |
7f761bcf5e82423f13a98485ad7153a7e6c806cdc1fb1504f130502753a3ef6d
|
File details
Details for the file croniters-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 425.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89677151413c7fb21364664759333d4e1705f57dbaeb8d9a6a153211d7613e60
|
|
| MD5 |
4fbba2681a00e0b03d740264b0a510c7
|
|
| BLAKE2b-256 |
31f03e0ac978b6ce28daedfe6bbda51fd8c3615253f1c7fd32e06fc0889f6666
|
File details
Details for the file croniters-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 251.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61a4faa7c741e67e5a5eac1e44472c91543bdd811db8cbeda47f319fc6103773
|
|
| MD5 |
2fa9983dd7f30985a4753f4b94691f2d
|
|
| BLAKE2b-256 |
1e714fbe0b60e8857768b92ab70624baad39831d5a48984967302e8802cd5e8e
|
File details
Details for the file croniters-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 287.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af4cb8d7909ee29a84090d9c607ffec75af3d305ae70cc2f30f7d8f5bdec6c2e
|
|
| MD5 |
7121345d690827a3d283bbc1b187e20a
|
|
| BLAKE2b-256 |
f6260c8b2b7434c83ad2afc4db130b97c54ad35b887897b27777e70db42f77b1
|
File details
Details for the file croniters-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 307.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7a52f626a3899bca4e2eea630368c91af4c8b4639dcce299985b62ee94f9147
|
|
| MD5 |
1c9d1c2986297f6fc931a83732148fb8
|
|
| BLAKE2b-256 |
03fa6b226e01a41dc766d04b764a57834f5a15f74b66acc29ce187b2aa894644
|
File details
Details for the file croniters-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 258.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a12588d723c4ce470634559b8de15c2142a7125dfb2a68c4a63e5f698ad48b3d
|
|
| MD5 |
4ddbcc7c46150ef4e1661b4667f13143
|
|
| BLAKE2b-256 |
49bbbb7a1e411b0e0cc1abbb0ab53efc5ce0e95737d45c0e098ec32e4b9f0e94
|
File details
Details for the file croniters-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 251.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
593fdcff7da4e21ddddb07b260a594180362f8f23000e99f9e8ebc8a753e3f32
|
|
| MD5 |
e36233a8205991e293732cf64c849d9d
|
|
| BLAKE2b-256 |
362d32ac7f5fc3106c71f27a22c0ff263011e78a1b97d8ba9ee8bcb804d47517
|
File details
Details for the file croniters-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 265.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee200b5663e841207da81129a49948ffdda5fb2bae473200dabe69e6fef2192e
|
|
| MD5 |
8b045af36f29a65205adf134ee356f53
|
|
| BLAKE2b-256 |
7c6b859e1a360b1aa6cce1e053b934bfdaa1e44db1a0dd362fc9201f1b1a08be
|
File details
Details for the file croniters-0.2.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 117.8 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d36fb9fe7a4219ae84ddcffd52b9fda239a421ebbd891fcfceaa0067dd5c6158
|
|
| MD5 |
89310f26a380b65101a27ed2bedd456c
|
|
| BLAKE2b-256 |
e4599c1dc7d34cb4883d151b6c296409f1eb0e244f41d680614e6e8b46f1e917
|
File details
Details for the file croniters-0.2.0-cp38-cp38-win32.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-win32.whl
- Upload date:
- Size: 112.7 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
804768749758cbbf212dbdff39a95606ee0dc2493bf9f65ccb9c870ba426e52e
|
|
| MD5 |
75bf7a3447585737ec2089bccf4a4ad6
|
|
| BLAKE2b-256 |
b8f7c89b7d31a9fdea5553890784bf3e4b353fe383b5f5c46f6e813f77d694ce
|
File details
Details for the file croniters-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 418.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
361e3395f7966edfd9d57f62a57977408982810ab4ef6611bffc0d75493234d9
|
|
| MD5 |
07b2ebd07e414f118a29ee2f9201525c
|
|
| BLAKE2b-256 |
e10fc835fd24847cd9f999ad4600f09a62d13305d425213f2aced4bd5005e789
|
File details
Details for the file croniters-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 442.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51d7b2002b0e0febdd5f5716990b4d1c858586526911c419b1df44b6f9a4e04c
|
|
| MD5 |
fa0d3a6cc989214704cfa0bfd1506209
|
|
| BLAKE2b-256 |
ea1f34cabf0502aaabfcaf059c755dbb68d297a0402a13a90b616d275811a40b
|
File details
Details for the file croniters-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 517.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0773a17249a75e4ad839c410a11f3c280ebf4649f22d64d2e8e25ca83161854e
|
|
| MD5 |
73658790b18218ded097e96c9b8697db
|
|
| BLAKE2b-256 |
3e47090f9aba42b33bca27c27e1ec462218ad8f700e49d61be60f736d115ecc5
|
File details
Details for the file croniters-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 425.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
259f5059b597321030dcf8bcb710755b9541fe306b889e2a920e2375a1aacafd
|
|
| MD5 |
0edfb1ea5dac6ba1ba13a4cf98cccd0b
|
|
| BLAKE2b-256 |
a3668a20d926e309d5aff3d1a3d34b1bffd41ace8e2234aacb09395590660014
|
File details
Details for the file croniters-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 251.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a34cafccdd57fe41c7114a0ec7c1e6dc716becc22b249b15d225a2872dbb93f
|
|
| MD5 |
1f3c3a9991c6a3a2c8d4b3d972794cfb
|
|
| BLAKE2b-256 |
f27b0b8b436ed34242b1ce95db9ca2f24520de7207d305d0732ac21d92775922
|
File details
Details for the file croniters-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 287.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f2322c8619abf6e7595c4cce443db3cd72a3b16ba4485c5ba885ff95ae4a0c6
|
|
| MD5 |
91cdaa780b4b884ebaf69d289849092b
|
|
| BLAKE2b-256 |
4943bf7e2da7a71cfa9969f943fd324edf71ebce9b39c5446c4c3c20bedd88f0
|
File details
Details for the file croniters-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 306.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a628d711972238406d0164b79e8238b6fb878fd9a40992d20b353617f60ba80
|
|
| MD5 |
37821e58a2841983f80f89c1b39de3ce
|
|
| BLAKE2b-256 |
9be9e493093a28abd821410eb32596b53e4889da900904070ccb7193fefb1ea9
|
File details
Details for the file croniters-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 258.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efea6404b2085888dc2905d04f31baac62123dd110c7b23ce13a145f11bfbb01
|
|
| MD5 |
98393f0ef366c27c17ac9ef3006219b3
|
|
| BLAKE2b-256 |
b9cff81e519ea654c40a531da24c32abb67fed97b708c61203f2f2cb62b7514f
|
File details
Details for the file croniters-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 250.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
347e3ffb8c60f7482d9889f844655a6e7d98878207595b1973d96d133bf2f88c
|
|
| MD5 |
2492052a1caf5398fb2da269d8da48f2
|
|
| BLAKE2b-256 |
77c272240cff24162fe1d4dfed2c5089a19c37e16d711d22af2938931248c059
|
File details
Details for the file croniters-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: croniters-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 265.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20c40ccc377dd4f9ca3778a3be6f3f472eb73f51d3167b907e96be2e1a52e2d3
|
|
| MD5 |
85749136840e8676ee882c0cc51099b4
|
|
| BLAKE2b-256 |
860e3afa9303717188ce95ae57df45a926da4aee30d42cd70935ee06d1f2efa2
|