Skip to main content

Modern datetime library for Python

Project description

⏰ Whenever

Typed and DST-safe datetimes for Python, available in Rust or pure Python.

Do you cross your fingers every time you work with Python's datetime—hoping that you didn't mix naive and aware? or that you avoided its other pitfalls? There’s no way to be sure...

✨ Until now! ✨

Whenever helps you write correct and type checked datetime code, using well-established concepts from modern libraries in other languages. It's also way faster than other third-party libraries, and usually the standard library as well. Don't buy the Rust hype?—don't worry: a pure Python version is available as well.

Shows a bar chart with benchmark results.

Parse, normalize, compare to now, shift, change timezone, and format (1M times)

⚠️ Note: A 1.0 release is expected soon. Until then, the API may change as we gather feedback and improve the library. Leave a ⭐️ on GitHub if you'd like to see how this project develops!

Why not the standard library?

Over 20+ years, Python's datetime has grown out of step with what you'd expect from a modern datetime library. Two points stand out:

  1. It doesn't always account for Daylight Saving Time (DST). Here is a simple example:

    bedtime = datetime(2023, 3, 25, 22, tzinfo=ZoneInfo("Europe/Paris"))
    full_rest = bedtime + timedelta(hours=8)
    # It returns 6am, but should be 7am—because we skipped an hour due to DST!
    

    Note this isn't a bug, but a design decision that DST is only considered when calculations involve two timezones. If you think this is surprising, you are not alone.

  2. Typing can't distinguish between naive and aware datetimes. Your code probably only works with one or the other, but there's no way to enforce this in the type system!

    # Does this expect naive or aware? Can't tell!
    def schedule_meeting(at: datetime) -> None: ...
    

Why not other libraries?

There are two other popular third-party libraries, but they don't (fully) address these issues. Here's how they compare to whenever and the standard library:

Whenever datetime Arrow Pendulum
DST-safe ⚠️
Typed aware/naive
Fast

Arrow is probably the most historically popular 3rd party datetime library. It attempts to provide a more "friendly" API than the standard library, but doesn't address the core issues: it keeps the same footguns, and its decision to reduce the number of types to just one (arrow.Arrow) means that it's even harder for typecheckers to catch mistakes.

Pendulum arrived on the scene in 2016, promising better DST-handling, as well as improved performance. However, it only fixes some DST-related pitfalls, and its performance has significantly degraded over time. Additionally, it's in a long maintenance slump with only two releases in the last four years, while many serious and long-standing issues remain unaddressed.

Why use whenever?

  • 🌐 DST-safe arithmetic
  • 🛡️ Typesafe API prevents common bugs
  • ✅ Fixes issues arrow/pendulum don't
  • ⚖️ Based on proven and familiar concepts
  • ⚡️ Unmatched performance
  • 💎 Thoroughly tested and documented
  • 📆 Support for date arithmetic
  • ⏱️ Nanosecond precision
  • 🪃 Pydantic support (beta)
  • 🦀 Rust!—but with a pure-Python option
  • 🧵 Free-threading support (beta)
  • 🚀 Supports per-interpreter GIL

Quickstart

>>> from whenever import (
...    # Explicit types for different use cases
...    Instant,
...    ZonedDateTime,
...    PlainDateTime,
... )

# Identify moments in time, without timezone/calendar complexity
>>> now = Instant.now()
Instant("2024-07-04 10:36:56Z")

# Simple, explicit conversions
>>> now.to_tz("Europe/Paris")
ZonedDateTime("2024-07-04 12:36:56+02:00[Europe/Paris]")

# A 'naive' datetime can't accidentally mix with other types.
# You need to explicitly convert it and handle ambiguity.
>>> party_invite = PlainDateTime("2023-10-28 22:00")
>>> party_invite.add(hours=6)
Traceback (most recent call last):
  ImplicitlyIgnoringDST: Adjusting a local datetime implicitly ignores DST [...]
>>> party_starts = party_invite.assume_tz("Europe/Amsterdam")
ZonedDateTime("2023-10-28 22:00:00+02:00[Europe/Amsterdam]")

# DST-safe arithmetic
>>> party_starts.add(hours=6)
ZonedDateTime("2023-10-29 03:00:00+01:00[Europe/Amsterdam]")

# Comparison and equality
>>> now > party_starts
True

# Rounding and truncation
>>> now.round("minute", increment=15)
Instant("2024-07-04 10:30:00Z")

# Formatting & parsing common formats (ISO8601, RFC3339, RFC2822)
>>> now.format_rfc2822()
"Thu, 04 Jul 2024 10:36:56 GMT"

# If you must: you can convert to/from the standard lib
>>> now.py_datetime()
datetime.datetime(2024, 7, 4, 10, 36, 56, tzinfo=datetime.timezone.utc)

Read more in the feature overview or API reference.

Roadmap

  • 🧪 0.x: get to feature-parity, process feedback, and tweak the API:

    • ✅ Datetime classes
    • ✅ Deltas
    • ✅ Date and time of day (separate from datetime)
    • ✅ Implement Rust extension for performance
    • 🚧 Tweaks to the delta API
  • 🔒 1.0: API stability and backwards compatibility

    • 🚧 Customizable parsing and formatting
    • 🚧 Intervals
    • 🚧 Ranges and recurring times
    • 🚧 Parsing leap seconds

Limitations

  • Supports the proleptic Gregorian calendar between 1 and 9999 AD
  • Timezone offsets are limited to whole seconds (consistent with IANA TZ DB)
  • No support for leap seconds (consistent with industry standards and other modern libraries)

Versioning and compatibility policy

Whenever follows semantic versioning. Until the 1.0 version, the API may change with minor releases. Breaking changes will be meticulously explained in the changelog. Since the API is fully typed, your typechecker and/or IDE will help you adjust to any API changes.

License

Whenever is licensed under the MIT License. The binary wheels contain Rust dependencies which are licensed under similarly permissive licenses (MIT, Apache-2.0, and others). For more details, see the licenses included in the distribution.

Acknowledgements

Whenever stands on the shoulders of giants:

  • Its core datamodel takes big inspiration from Noda Time, which in turn is inspired by the influential Joda Time.

  • Whenever also takes a lot of inspiration from the Temporal proposal for JavaScript. After years of design work and gathering feedback, TC39 has come up with an extraordinarily well-specified API fit for a dynamic language. Whenever takes a lot of cues from Temporal for complex APIs such as handling ambiguity and rounding.

  • The pure-Python version of whenever also makes extensive use of Python's datetime and zoneinfo libraries internally.

  • Whenever also borrows a few nifty ideas from Jiff: A modern datetime library in Rust which takes inspiration from Temporal.

  • The benchmark comparison graph is adapted from the Ruff project.

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

whenever-0.9.5rc0.tar.gz (259.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

whenever-0.9.5rc0-py3-none-any.whl (64.9 kB view details)

Uploaded Python 3

whenever-0.9.5rc0-cp314-cp314t-win_amd64.whl (440.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.9.5rc0-cp314-cp314t-win32.whl (417.6 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_x86_64.whl (696.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_i686.whl (732.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_armv7l.whl (769.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_aarch64.whl (637.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (497.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (520.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp314-cp314t-macosx_11_0_arm64.whl (438.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.9.5rc0-cp314-cp314t-macosx_10_12_x86_64.whl (468.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.9.5rc0-cp314-cp314-win_amd64.whl (442.5 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.9.5rc0-cp314-cp314-win32.whl (418.3 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_x86_64.whl (698.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_i686.whl (735.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_armv7l.whl (771.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_aarch64.whl (638.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (522.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (499.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (522.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp314-cp314-macosx_11_0_arm64.whl (441.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.9.5rc0-cp314-cp314-macosx_10_12_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.9.5rc0-cp313-cp313t-win_amd64.whl (438.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

whenever-0.9.5rc0-cp313-cp313t-win32.whl (416.0 kB view details)

Uploaded CPython 3.13tWindows x86

whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_x86_64.whl (694.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_i686.whl (731.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_armv7l.whl (769.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_aarch64.whl (635.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (498.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (520.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp313-cp313t-macosx_11_0_arm64.whl (437.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

whenever-0.9.5rc0-cp313-cp313t-macosx_10_12_x86_64.whl (466.5 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

whenever-0.9.5rc0-cp313-cp313-win_amd64.whl (440.2 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.9.5rc0-cp313-cp313-win32.whl (416.2 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_x86_64.whl (696.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_i686.whl (733.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_armv7l.whl (769.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_aarch64.whl (636.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (498.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (521.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp313-cp313-macosx_11_0_arm64.whl (438.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.9.5rc0-cp313-cp313-macosx_10_12_x86_64.whl (467.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.9.5rc0-cp312-cp312-win_amd64.whl (440.2 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.9.5rc0-cp312-cp312-win32.whl (416.2 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_x86_64.whl (696.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_i686.whl (733.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_armv7l.whl (769.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_aarch64.whl (636.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (498.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (521.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp312-cp312-macosx_11_0_arm64.whl (438.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.9.5rc0-cp312-cp312-macosx_10_12_x86_64.whl (467.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.9.5rc0-cp311-cp311-win_amd64.whl (437.9 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.9.5rc0-cp311-cp311-win32.whl (413.1 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_x86_64.whl (694.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_i686.whl (730.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_armv7l.whl (768.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_aarch64.whl (636.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (497.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (519.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp311-cp311-macosx_11_0_arm64.whl (438.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.9.5rc0-cp311-cp311-macosx_10_12_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.9.5rc0-cp310-cp310-win_amd64.whl (437.9 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.9.5rc0-cp310-cp310-win32.whl (413.1 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_x86_64.whl (694.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_i686.whl (730.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_armv7l.whl (768.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_aarch64.whl (636.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (497.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (519.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp310-cp310-macosx_11_0_arm64.whl (438.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.9.5rc0-cp310-cp310-macosx_10_12_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

whenever-0.9.5rc0-cp39-cp39-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.9Windows x86-64

whenever-0.9.5rc0-cp39-cp39-win32.whl (413.3 kB view details)

Uploaded CPython 3.9Windows x86

whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_x86_64.whl (694.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_i686.whl (730.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_armv7l.whl (768.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_aarch64.whl (636.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (497.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

whenever-0.9.5rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (519.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

whenever-0.9.5rc0-cp39-cp39-macosx_11_0_arm64.whl (438.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

whenever-0.9.5rc0-cp39-cp39-macosx_10_12_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file whenever-0.9.5rc0.tar.gz.

File metadata

  • Download URL: whenever-0.9.5rc0.tar.gz
  • Upload date:
  • Size: 259.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0.tar.gz
Algorithm Hash digest
SHA256 b0b9c7e16f9241a47792315414cdded64ecb6551514ba105503871d5ed1f54a4
MD5 ae6b93750307cc4c55fb94c013622e9a
BLAKE2b-256 505b856761633ef370bd9ef77ffebb885f5c62459b00065516aa961197fa9a9a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-py3-none-any.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-py3-none-any.whl
  • Upload date:
  • Size: 64.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 bf61e46ac599e21f7d65f75db45e2e19a9e22a84493ad3f688c405f5ca6cb19e
MD5 66fb2c55e30984757153450c41f15600
BLAKE2b-256 e16f7f60ace68a462ae260ce8d5136f0e533b92cd0f68847581b0ea511830479

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8da29b9aee9a6f3ec7e46cee4abb5373b8900cd5a7bdeeb2f9aadef785d57951
MD5 7e27a9dcbfc5962d2f53bc428d3eee9a
BLAKE2b-256 03375b48f7fececfa7100e8c603beb78a3725094271c727992e2fcc917728524

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 417.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6f67774bb9af736d3e217e7d1734cac304a7314232ae1dd6991870b67f389750
MD5 77de79f527cc98fad3c6a146fbd9a317
BLAKE2b-256 619cf4618c9d31aa387463696dfc535490cb3fb12a96855c57d8b39c8b206d7f

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39e8651cebec759fd75a6e054d27a59f791aea0d804051e322ebf362e7137e96
MD5 0518935e5cf1669e0e10efe22a2f698e
BLAKE2b-256 5dc2a22b1d2845091658235decc251a56b2371ed088d7cb64076e73908516518

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fe2cfda0f76f4c10bcb5c145d77fa1a56d3ab8828c058995efd08cc55d92b76
MD5 b9f61585d495124658479b55469665b1
BLAKE2b-256 660134e63edb72654bb7169463317bbcd600377cd1eb31cf7a4ecd8da450ad94

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6124a4e8dd3f60185a6a6c57be0e34ca7e80772159c07198ace5759d1d83435e
MD5 e1d7abd50e961ab3aaafe07c4b99beb1
BLAKE2b-256 cc336ce02d8b0039eca813a29a2fd3ba107fceafdb6b0deb182dc9a434fc034b

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 624198145b30643916eee5c80cd5e8f186364e105a7e21494bb06854830a1487
MD5 c878d983fed25a54549a4135b2c20418
BLAKE2b-256 f9c0643ffb23df5273e680b3efab304b3d390f283da55cfcbc83e5dbd7bbd685

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d797e195f6082b95b01d70190ba89608033f392a93dd166535f9e376cd144e2b
MD5 8cc09744f14b6979eae708a3d1f1be05
BLAKE2b-256 145f44cd3109360cbdce2d6bd72e277e2d60615515a7e1ece67eb028c41a7d4d

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c64782a2283af9e934573bf96a1050d5c0ab5738c2eb974f4dd3a5a479552735
MD5 723097f8e767c3a835b6f4c903c3190c
BLAKE2b-256 70fae2ab5469c67eaebf52b2afbd3719fe24f6fd372c044e367ef898d86577a0

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2ba0706f34a33c9b63064bd7ec3554d46b2823fedc463571b0ccc92e66427a5
MD5 57dc297753e17167b65bcb7597329561
BLAKE2b-256 30651be16ce6814f35ff12c38381a870d808fafa45aa0dc22fe630fb185cef09

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8966969d5b69cd3fa467f5160df15998cc378b77f5f472176f84eb6ed09abd3
MD5 7a89c7d1815897fe35e29cb8108286ad
BLAKE2b-256 34db39f33238d32f32f9858e09b537a3e8fb3061073d02f98912601e96bf84d9

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05dd8ceec7cfb317ec3a8a90c48db764536134ec7aee02cb011e9c9d8d7d8ab3
MD5 5b65f2f4a58954eae85478de1f3c2fd0
BLAKE2b-256 172f5e9f64d51625e7d2774af4785d2fb4fdf9d61383bc0c0e87380fb7a48df1

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9fd76f0bf4a115c09fc59e1f8bbfc9157d05f2eeeec1388805daf1430bd560ed
MD5 ed33b0120fcc915cd564927c57996472
BLAKE2b-256 d8976ff5d134e5f3432d665240a0ab10be91dfc24455363a1a9c52861b552e27

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c3228e93c8bc5dc9e54abd02c2cb4b21472d8e3d7c6c23f77db3ed09460eb84
MD5 7ffdd8244c94f802b95ddbf8cb774185
BLAKE2b-256 1fa2c0caf5ca6aaabdfeb935597256997db106f867596731892eefa4b3a15a4f

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3437c7be769ed4e7cc9ab150be18f4012eeb89dcadec8807c2b2cd6bada1d3c
MD5 8eaf253e172384daf97bb51509e20361
BLAKE2b-256 86e636e95a19e176f066dfe45ad1bb5ea4d730d2610ff47c65d7ba24bb5e92a5

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5bd4659c2e8986ec2e207d2e8952180da4973ab84f28c3e7fa5adda31f19e0e1
MD5 4e71fd4debe83d642acdef0588de266d
BLAKE2b-256 16e44431fff60c5774ad94573870cb5a51272547464013a664336db6bb2dc674

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 418.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2b35653972e817e23dc26bf139608f25e577bc0655ed6cd67becaafdaf6ae983
MD5 ca26ef7aa9ef2036db1d16beb52c6843
BLAKE2b-256 c2dfbbecacdad71f20238914a14b9fef00089968859f054344ba1d22ebb295bf

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31cabdacd2b3a70e2d9837cc971a5ee5ff18d0a6a978daa9cf789dbc7759c972
MD5 86e98ece7f46279c0d075fd4f778543e
BLAKE2b-256 663ae15249499ced0df8d98f88ff19eae2101cf7099400091a2e4900a827198c

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e40e651ed56e4284f57a30f65c13f1d8d90d8220b53653bc2ed6aee9b82685b
MD5 423a90817f65820da1c650837128cbfb
BLAKE2b-256 6a2be15a76b6a58f70df56b93d77196fe5c12332166005920097eeac8ad43d02

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1140fa376689a84fffcf7320e78cc04b3ae6080a471db989090b550e0946b1b
MD5 80021f689666710537bcffd4de67be36
BLAKE2b-256 844a9eb6c652dbff5d9a2e61d2f9f4f10fe1dab465ca3574b5346b6f029ea94d

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53f3c6b8f9bf2ba61977a03597624c5b1ef5ffe7ad0dc2992703a0d08531a75f
MD5 4f9a7675eccbd6297dcfa3d3edcfecb7
BLAKE2b-256 e78e995482cdaf790e6b5f95e35d9379b342445ff711d240c8afc90e4429e5f3

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c204e088c0d5646ac92a531566dae61800ca746dbc57886d223c054428604624
MD5 ba160bf43dc334dfd74c9c0f5832bd2e
BLAKE2b-256 54f0711a972b2e5b1fb4d8ed1a3e7e5598aa25dd3b36ff3f5c221b8320437ae5

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21993542d693fa8317f1f46806777c2cd824fb883eef74fedc3ad967bc004afd
MD5 8e3a639143c2e52a8641bf57bd4a28e9
BLAKE2b-256 7971a599e68ac029c62bb62ed917cdb18451cdac88d471a27744b2ec71b28350

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f05ed3bc889943723942ae8d6899f088ffaa9beb69b3039b3a21f8642e41edb
MD5 c3a4144fbfc1350476561c9fd32269a3
BLAKE2b-256 b488f7d08c4114b6392f3b2df4251790e6ad9592794abcbc1ab320b302d01c9c

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46a22ee24d4390d3b727f08271baa1279f8986d7cfc66a16443cbee63d9ffc59
MD5 7e6b6c8b57cb639f85f913a62179fac1
BLAKE2b-256 3e8b693afb8580ecd494d10570b4c787d2aca19f4ad1c8d5797b98ab19cb681a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f309efe9d87e504e48ae800d76d7862fb223fa0bb2943d68e1713fbadd44601
MD5 6949a556fb59133c47d9678e5a459de2
BLAKE2b-256 fbe599e692b491c4fbc68502f92248fdec4422811d8142154e503a901a2f6843

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c7327caa97c79f038946be1489867bfb2d34eb0a4afc087845143c1e9f27431d
MD5 b3b609269cb95dfb40a274e272f983ba
BLAKE2b-256 1d48f6d09a1c61c6535423f517d0e562b07c4128d3c9fba764d4231610ff2f00

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2afde37ab76db284167bc3c523d5cb440c375da51adcfc82ff2d09d8aeee5f8
MD5 3f813e140d7906d848ea8aecfc2bcb5f
BLAKE2b-256 d983eff0e5678d3240a632148567ca3feb698973ab2b1b793afe9ad078ed054a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90a4cf9fa2b92d5778e214a04e7d047903d579f09990b0da29e30c53810457c9
MD5 e2753ec14f475a200af1dc14f27bd11c
BLAKE2b-256 bfb80a04ceab440de26b55b7550e77be767f81f944eb266584f0c94a48b6c8e3

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ecd4bb885e78718632ccc50edc46d1fa3a6d4b796c8af2ca94bffa31e5430c7f
MD5 170466a452dda5434deffcd7d064652e
BLAKE2b-256 5cdf61a92fabaf168936eee104498f39e1cf0e2eecca49eb7871b325dca180d2

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 416.0 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0a3221dc3d9f74c86e1445037121263dd6f244d3dbe5f1ec1899938d02333ec9
MD5 39710b8d4334507497253bbf5b52331d
BLAKE2b-256 f7748920a507bd124c2ba66874d5ae04c149f995d348d6dbc816114c61249a8c

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc31ce5675733bb3a32b8b44b862d893d8079f9b1c28791adb2eb85bd17f969c
MD5 d60c150303423740d622d2e26f404634
BLAKE2b-256 2eca3d29dbd6ac1a8e5c942cd5dee89d72d3852161a8d894409f5894065181b1

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d7cc327518259005b3bcfb7913ef81acf405e2a95e8d7d0ee93642832523918
MD5 3442f99f65f8e9014e17ed3fb5f93cc2
BLAKE2b-256 c031962433a70385e4888ce077cfabe773aebcae2f13b19aba50c5d877e2fe8a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6e7e9f26820cf8c9f6b93d837ca7fbb70f6cdddeb469a3eaaf4810bcdd25f05
MD5 271a31b0d3db3d0037ca6821d678a5b0
BLAKE2b-256 2a3af2a66406eeac395af4503ea582b50719b71e78c1caf1ae6fe1b76c42d6b4

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82e98bf8bf137224e693429aa3e97a06527549c0a82ecb45ba21b7607ddd5aaa
MD5 a00c5eb7339774168f6788a678eb113e
BLAKE2b-256 dc3436b05289711865d5b562bfccfe8c6254695131f051187db15af3d438a331

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 790325cbf9054bcb63008c61eaa5f8973fb14fe90daecc299972aac18d54be31
MD5 7bc30e2db5389d426c73fcb9f0926242
BLAKE2b-256 428266b58ae14bc912ce64a597b7ea7dabdb88d195db520cdb438620ddabe06a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6f4206603e642aec303d1fb2211daff772cc38dccc0c6302c6d8cde32ba7fe1
MD5 4ca784fbe2c535e4bdcf1c7f32fa4fb3
BLAKE2b-256 ce372e5563301c82100225a48ced9e9a132261a20e3b5cbf2d9f240bb7a87e2b

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 295424780d235f2e9e63afc48b273d4bb14f3da89d06c87cdbfd504a982ecec6
MD5 3ac1a7feb6a56c0fd63fa89bc3ee3c41
BLAKE2b-256 815709d15ae6ef8d65e1ada47f9d7c97e841f0109182bc8242d742f774b92951

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd9177701d293a4b877ac3752ad375261c331636fbe0e212b87672052f292de3
MD5 68765b58dae9752c15d064a779300adc
BLAKE2b-256 c377b5b8c772780bc6994c9932be829e29ca936678c15f9dd4658718cfbd5712

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47e203b665d573932542346e616cbb97e813dda17507cd2648ae20887e731b5f
MD5 f882b5ff8d7ac8306b037f633e5cea73
BLAKE2b-256 366c6428648bdd634f9d0e4645b8a5bd025e48e4b80f156ae7d7c22d4fe4aee9

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3061bd969ef06a6aa1d5a217f5c4685c450e0e399c99f36d2710898b08720edc
MD5 e3aaefc90c26c21e7c98f3766a728ad4
BLAKE2b-256 76b379510a9133213014d96cb995aa3cae89625a7f31e83374372f08d02b0506

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4ed253294a8bfd37ed6607403578864f191598161b50b85dc34aa17db26bd21
MD5 36551358b3a010d5099229a0e698c3ca
BLAKE2b-256 a96053161f32f23b5d8a5ee38084a953de657237fb0013104fb0ce68249a8a20

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcf230f7957d2facc4b17f7665b28ab3ba2d9859c5e7949060242e179ba13fa2
MD5 81375382d9c8d739af6ce24da2bcfb94
BLAKE2b-256 0171791cb4f54302e18d1e7239c060a564defeee069dbc33944ee3d6bdac3b3e

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e3bebf6dec9f44c83c42f4e075801151bb94a78096858a9cc76c08d05539081d
MD5 978de5f128be3527be6f6b3d961ce946
BLAKE2b-256 245c498219bdece5338149313548556872a76b83285224f2a5c473370cdccf7f

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 416.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4b67046c5373adedbd4cc6deb5d09a804d2b458d4736eb14beb3a2f038ea7c17
MD5 8824206dbaa805201126ae1ef4ce063b
BLAKE2b-256 0703e7eb49111644d103527a05807cfb57daa7e70c39c02b6e4af3261c99f707

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4cd8f6e323a8f08db0d9bcf975a0c08919de8eb5355b1fe9c7b3ece5a64b678
MD5 4ef7b9209f9e68fb60a63e3b21b64420
BLAKE2b-256 69bac3fc5a077d86d7bc4dc5e7331bb22a1e2eda385ea5f6400a7c8eaaea28ac

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08e4f38e66e452a90a072a0adee60a30638a701c5947216546d9309021e6c0c6
MD5 01e44a74f81d00acc35065514ce8de97
BLAKE2b-256 9c880f9b5d0cf68f5028a4c1f4803012eec0270bf8eae07f80944325083e0d77

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4583fb81be0388efefa5a1f183fdeae4befd33da4c947eda6cdd6962cb139071
MD5 9f1b9e808d729b37a6607e2ce3b4ccae
BLAKE2b-256 59ad459f21f396fa9c29c30e8c97698d82836887372e1c3f1eca25e21dfe25d0

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d27b245ece5aac0fec2cc795b8a28a2f168c472f6bb480c6352c614a2349981c
MD5 e144be655fe022337ff9f80809ef2f22
BLAKE2b-256 06caf659d6faea90b765586b635a16f7796bc7982401641bc0a9a67ad889f549

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1c7ab7525fd9d52fcfa9284a3df329859a00d84d7ff8196b750dde2d2692418
MD5 a51a9d08c585235627ad2ee62c8d1e86
BLAKE2b-256 49a1918e016c392b17dae1d68e5dfce977032f7fdb4c549bedac8b4035784414

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9acacb4eac783e8ac2d731e6c8097d61f8a1c6c6fe5fbb3cda16b84b4bfcd080
MD5 9c1c17f61573a112ba1f8c2bae8de83f
BLAKE2b-256 6e204060089770864bf7f5a1cba6da964058e1e7e1bd6e8a4c3bbcca3f5c6a07

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd05a121f85176cecaa82ded0427ce13bdbbbbbc2ed3a07d26a736a54b5246ae
MD5 2de3fe91767a3cb479d25623a68b3319
BLAKE2b-256 ebe750a5ab10633568875023f83bf645bf358c660dcca74bfcbd0b6972ab1bc8

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54d0f614be34eba869ff32494f40a9c49bb00be723559ac67095ac864f756449
MD5 eb9ed18677fc1ff79531375d011962ae
BLAKE2b-256 e798119bd879771a09b99c1e01910fb0a383b2d01f3b578779eb49bebca1a0f1

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d894dbab6628f2735b09f4bf8ec785b53ef930a84c93fa02ed03482ce23bd6cb
MD5 ebd264c16c372399eafd01170e04d808
BLAKE2b-256 b9ac122b9eb76a6435033c7b9b1819df67a1693b246949611a49f3d006125386

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe977d87a4c8372c0dd403791fbad2ceca3acca9ac11e3e6b5ebf00cccdcaeb2
MD5 58752e9a2f960ae36f340a426ce4a4c1
BLAKE2b-256 c5677184f71f21bbbc8609c5e96b431762b3cad869899e37983a61e43782c792

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a182c471f43edd853d638f88ccd8cd0f63414852fd130f5e0ab7e5f97f9f2b2
MD5 80c450997cc2892a0efc7146951db837
BLAKE2b-256 f0ad8691c871e892d4f0f73a5e91a2204d7cd3cb6dcdd081864b5f9d6a7d336d

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2977b28e0498677a571a7245765f56155c2cbb00d93557a18e077be8674a4575
MD5 be6e9f3cb1ae96caf4d5b3d9451f6cf7
BLAKE2b-256 0646eb2ee2861878402bbdb677d740ec97389e6e0cbc538c6744fd08f7aaabd0

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df8a37ba990885c937c92fb297727b0368b28068e5bde37f80697f198cf0b0e2
MD5 f9548a415dd1f28e719fc432450112d8
BLAKE2b-256 8b5b353ba7199345a817b3a317394964198b43c0332ab88469a6fd2a6078fdda

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 416.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b6b2cbbde0f48555f9a9872af25609056acf5b742eae2b7e9f6d3cdf509fc6f4
MD5 873d10693c49c21406c58f6e77383188
BLAKE2b-256 c8da312299ea707364d840d231a3717a16006b6ba05bfaa894416df92a7c70c8

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fb0907827ae56d77d22032c15e1ca8c35b49eb4d47b441f9056810ca274c48a
MD5 e445ccdce8b8f0dcb3673c5db0815557
BLAKE2b-256 2092cc346a1f9b042fc6cb412636d2f02d2759d71868558bb5dda949ff26dff2

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2467a5863057911b162525d4b6ea9aec62df4137aea5dde202a533fbc389839e
MD5 7c8697d812a41562d5530a9a5b206657
BLAKE2b-256 85c955c95f056ac9227ce0e11064ff3b7e0759d5fc3c48daf1a62401d31d22ad

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab4cff764ace4ec18f07ce22cc0e83eb2603a44f62454272d7ba743052de536f
MD5 f6c08086f3c908c54d715521d61eebfb
BLAKE2b-256 2023340ecd4ddefa915ee6d5a50736ff0f5ea7df651c6091465aa7c3f78d6701

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1a3073ef3e89ab7f17dadc5412aeb96e38132909b2e7e89b609d2295db99785
MD5 3d378ef1e9ffa27ba0d24d023d9f157c
BLAKE2b-256 ffb4614e05f8a2eb233ae2eaa40bb3d2d4ee51a91ed30d71ac174f8a0c90824f

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 931eff581da334837cbe0560c90ed54d9299ac6c468a03f0396f79c1ac927e1e
MD5 8821a042b5129cecca4eb8965aa95e45
BLAKE2b-256 2f75ad5af2df77b6291a8f9e257217b9c75a06b77d7881c4ed5fbdfbb65e379a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cf686bdd7a3d5e59bc9ca5fe6abb205fe568819aec1afc52e590b5b12f200b8
MD5 adde39c64935287d2fcc8b4649e20fa7
BLAKE2b-256 a1dfb237e62e8c0045d0eff7643c946a073bd658b1a5a631af7b78e6bd62c072

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0042e75cfa0db2f5b3b1e84ca1a1828390b85cb0d6210dd6750bfe14f1f3d842
MD5 565dfcef489308a039f50aea1107987a
BLAKE2b-256 2c6c44e1c9909f624e015cd064ece214ef8ea01f6ebad9a79cdc11a248ae7943

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d50fa7328a1d6b4dd4f6ee99b5f3e382b667ede3ba5e927519aa1b593cab66f
MD5 258529a750f9e99eaf3d424da9a915a4
BLAKE2b-256 74f76fdce918a528c53d08aaa631fd75f6434069e485ba61f0307d80d7f7c941

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbc029ff3e8bd6839ffae51e902bcebbbeb27bf227eb82ad4075968f4f788152
MD5 7a4abff0f4c08a736ca90baebe35e552
BLAKE2b-256 a1a1f14e7b20792c1bed40d4f4c98a3c07ec319fbf5e8184dcfa68e947037954

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad41ea76c30da4f187ce8efa2adecd56a125d5eb9bddf55e20798103c5ef053e
MD5 fdf939b65afd8413474894f77d8798d8
BLAKE2b-256 b2d78f552469f899cfde426d75aefe9957bcac6d68d95d93f20311d9c5df4c33

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee71680881e0207e339e4c3dd60639983f85d17f2d376bc809b5351c337ca337
MD5 5339b7dc3773f14e9138405b58a3c1bc
BLAKE2b-256 82d52b076f64c3fc7395899e0a08ad1fc668ce5f06d3b648b4657ca613cde556

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e58d30afb04cfdf64ae75f94e7ef76764d2f15e88b2afafb7d6e8af7230b409
MD5 310a676a94ffe4a72535b8ffb46f0797
BLAKE2b-256 d738362a0662364b56a7251bbb1721f03aee319e208fbc095cc607fb001f0866

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 34201785a9b7a8592dea2f7fe79dcde1777f21dc2e819949b3ae2f16fdd02444
MD5 382c0af2f87efa04e2ddea895051d751
BLAKE2b-256 3c1503df6ba57f8a07ed125716e4079cf9210866ce79292b44fdf7563c66168c

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 27cfd0fdab8b5ba5e1e2b95107b5cef99cf9c771c78e867745ca20b8ca001680
MD5 5a5a36b3d753580a951959842aab036d
BLAKE2b-256 842195447aac8d86cfb68458f8fed7f3f129d6685789ffc45ce7e5262bf81e32

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5019c0405ef2691bdc1c87706508a4fa095daf3176d58c8ee3d57b64395623ce
MD5 e5a9ca0e7ba1a5e46c97d01adad3f2de
BLAKE2b-256 a8d89045a2588780bfa34315a6d2c8ed1bb066d78968b4a5d35ae3f621f13194

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d7b1797f2bc0c0be46c735538f1940253d9d258ceef70fa33d078cd4b53eb26
MD5 343ddbf02b3e6972c444baf07090d696
BLAKE2b-256 825832125c834a97f7354ce6f5b6f942b68402757077b743e8f359afb29a7d0a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7039bf7e72d8476362b9cf766c1ea18bd1d401d6f4a82ce07f4a7717b5ebfc5e
MD5 694525e6215aced6ce5ea5ec77d9eb19
BLAKE2b-256 76e00a5899d28085c440d1f7456985823038682b65139025bca9d205428f7ad9

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd00367ba72dbe5c33cff5d189df8829fcebb6063195862d824983a51232a573
MD5 acf5ad66f42c7be9f413653235925760
BLAKE2b-256 820405b9227b98a6d4c29b50793b72c5743a490ef38a7313911fd7639150ebb8

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b91c69f550643b20f529b4f9c5a72730b05830e645e2c0354e23e48d1d3c6acc
MD5 b433d435c501b6a2032d6e9a2b9e943a
BLAKE2b-256 cdf583e546033d9daa694f5c949c97b487c66b1ae7dd2355eb0af8e26650e2b8

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38856f1ef1b1ebcae1184281aa9aec07d5142d9c4faebf50fbc5d66902f0478d
MD5 61d7b740a5b90f2d2801de046df605c0
BLAKE2b-256 9c4fb56d4c357dd3f70bfccd4bd6eca99318f221fb16c3acb6345d6784f56936

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb962f7477c5bf791fe53996eb38bdbbc8bed4fea741395354ead18a6532d13a
MD5 308cae8833d7fe8000aa93a78079d2ee
BLAKE2b-256 b606352849b1854295aafe079b73ea1d7c5b8cd6a13658c660412bce48771d0b

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff535129bd4d3fb9bbe3b6dfab1a29abe62121c068ffbff3613f2bfd590d694e
MD5 ffcfcf86b528032c6989cb123dbf84fb
BLAKE2b-256 10271764a6031006740d6ae40f2aaf897e32d7ad967cd8cbe4329d4c8bc71c03

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b42bf14852dce675fa647e48a2cf03a544fe1a6dde38f71e5ff06a413ecd97c
MD5 a06aa9831574e49c7ef894f6dae6debb
BLAKE2b-256 1ca5cc7a860c93d5b480c42569a07b90deb9399a9633ddd7590e40022871438d

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36f0c4214584253279ec8260efc57f3908349c54397568b9e2e25bcb0e3aa92f
MD5 ad48b1d67b8b0162666f3c742de03f6a
BLAKE2b-256 89a4aa35eb16054ff9b480ca4cfd0b1b2fb95c99a8b8d9edb1b58e1def257baf

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 433fd393fa233deff69ae465b86fa8ec3b0fd31b4958728614d62b02783c731e
MD5 4de1a6f18374fcda902eb05a1099308e
BLAKE2b-256 efc8d67ad2e8a501e83af70f063efae81b06fdfdf798f2b13c1f630a1fc9404c

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bf5c531655f380acaa5a76f0b4f5a9ef9462dd169096dc0bffe99cd3ad7b921
MD5 288d17e30fc3cb76897532d0d9d0689c
BLAKE2b-256 f46c1ed8665b313742542a8f659eccad3b178de1b56dd64e8bcf60456fbcf6ad

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0896d1b580c8bc71d8d3d2c51523ce5063f32fb4838f52801eb58c76df2cf0cb
MD5 0fcfcbedb284ef31c7033acfe23a882f
BLAKE2b-256 b230ccd0506cf2146ac2a31deb13e5e1abcf5bd6f91ee666b3f205b611874bbc

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 413.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 840efeeee02197b45c2a4da0a8972c49108c19b5c8ad26a3046dea9d801ebf0c
MD5 87ba2eeb7fcbeef084cc0ec159bc36e3
BLAKE2b-256 d27211235584636b3e12d8f6c1e1b208eb829f6c2d6c61bf4a3c038cd2d2a77e

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c5c1079a156968d9841ca0d1eb9b82fa90eb64f77a88d2b0070da6781ce019d
MD5 220dfd3439a68d0836d071c14b8fdbc4
BLAKE2b-256 af1654efbba79a2ce5c57b0d5a13000953a51ef7b6ee60fc293e6a66c6578884

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25af76c70efe207083c7929d7965956dd34cc6b6cffe79a2ce3974b0966e2369
MD5 6d7a2459bb9fddab6148625b7af2143d
BLAKE2b-256 60f9d0d8c0ee58b6fd313a160197c260ed8ce5e3555ea1150a133d281cec1a1f

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 925303c14ecf6e9b496e291351156453967477bc2eed60f1d6651e8cfb75e6f6
MD5 24eaa46ae4249ccad3388eb79d4cc897
BLAKE2b-256 08fe256bc74745eaf20db1b7caf455dda5dbd3060fc3bf6f8dbcd4e4e29dabd6

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8890fe166f3e69c9789c32f160809acfa76070a63bd8c5b33d503e9e1b5fb9b
MD5 70b17cfbaa84e19e45ac5b528de58ab7
BLAKE2b-256 1ff259571b2b860c02325c7f0d7045eef54481815f89a799e3bcc567b5662f75

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b11bccbf8842678a54b6a5134da278aecba762e3c3e09d134a73d7ea4d1e65c
MD5 6e28fa11759ad58f76b348fca5bc5c03
BLAKE2b-256 f15e1da81376fcf64983d3498c8562f75738ce13d044eb73f24b8060b88f09c2

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e40b11cc1a4e344c118342b187998c4345e4bba8fe3525be5021a7d27ea88088
MD5 455fa61b03b36e3c7cc7487fcc72c1bf
BLAKE2b-256 4d049a0b7ea5b86bb5fb61ccbcfdc7acafad48f00a64ba7cf9d412632d77de8d

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7b454cbfb645153cf3988bb78c45bd4a4720508337712ea2a693d9b11965ead
MD5 7bf01608d40527842a90035dd2361c8d
BLAKE2b-256 da4a2d5a74c8aed96e3dd1fe0941608dc8692766b37965c0863295c60b6c0e19

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2af5599a6256a194045c1cef9c867a50408ca01e7db24af46beaf31c3a27a54
MD5 0ef26dc95d442c4c0e5150bcd8512855
BLAKE2b-256 02b00c36afbd49fc0c1110c095e715dfa5f72f22ac6f674e4a035b4d515b0e64

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fd8bd5cba37df36827e08dfe275e057ad776dba20208fbe27571ca6a54e77e4
MD5 3963e53c0b55aae556d838b393d2f3f5
BLAKE2b-256 1b2c9aa9e46f8813203f7a38f29ad9125888c255d4c94ca64154717a6b968bb0

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 104d7775b600e58f89a73ab8123cfef126e457c07bdbf4de2ddd70052fab228a
MD5 c2e012683764550dff125e5b850d8d22
BLAKE2b-256 cfb6ce30065235bf79cffad524113823cee962c912a891f755a1b9b0296385d7

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83455efae17567c72211de45ae0887d256064f23c45c29de39387251b86cd2f7
MD5 50e8f9a2142da65a36f33c0f46d6c767
BLAKE2b-256 1874f151089e0baa17fed87fc27072b180f4e7b62afc9cb02c2caf5b77d09348

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c60997c4beca858aa2adec77d619c1fad0501f23e6c9a673580a0ecb4b2b85f
MD5 66461fa1e5c25a171e5b3ad7f570381d
BLAKE2b-256 64a161b0dbaedc8122bc9e8e2fcdc19733661a8e4c4f0a491062d6c9adc0573c

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 438.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 26d0a7c18d98bfcbc5ce2f0aa3c562d2778c239cbeb5b2400251fbc14ff71a3e
MD5 9f3e0fe118a2a9d564dea38f2e630871
BLAKE2b-256 94aad05eb0a6a425aa83a0663fa76665afc2f7c075f25127e60fe13e69b03e84

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-win32.whl.

File metadata

  • Download URL: whenever-0.9.5rc0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 413.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a64f1485126ea583b2c3c58be714d85d8d7bdf669ce4d19b827a4d2a3d87c36
MD5 a9a081c5d99d4540caf279c9fb2696f8
BLAKE2b-256 dc2f2a04ce1ba63e67eff60b0a2ea84db7c80633fbea0c4d1eb720d9316250cb

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8a5464847c15f972bab55f8d302b6addc79ad8b835bd9744fc30ffeaa022665
MD5 40e5af6f3b948917c4fed208600d5f21
BLAKE2b-256 84abdf9375a3cb432ef269e94a474b5f845e4d1db7a19bf6fbffe7439c22834a

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10e9d9e5f9c171983aa0b1e03fc52fe301fbc32288c588cd6d64bb619c8b8251
MD5 c7cad13f0049715eeb6eb322cf99b437
BLAKE2b-256 5d1e2b312a2deb83ec7c5e3ab76f7cf577f686ac10d027d01997123c76982463

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93745351c3a6085ce213239e789beebcd45d6240393c3cfbca1b2220767ea110
MD5 313c3b1180995c8c54ede018c753dc4c
BLAKE2b-256 3c043ef04aa4f218848e192041f717631c5171e296c426d9c42ce24419297af4

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9acd315e64a7f7f30b5224adbbe40a7423ede1334462d39fbef0b0bb126ef69d
MD5 48f78535c32fff102c8ba911f9734c45
BLAKE2b-256 e1bdbbaa2d32c672efeb5dae650026768e3008dddac5bbc6f5c81ca734ce044d

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df6028ff6d9a64065644c5e57537379c61ef70c582753bcd11b60892861d8ab3
MD5 7b507b8c29243a625d8b0b0478713630
BLAKE2b-256 5173b4c884bce4002ff6feae73dc0e6e8f8c26cb7ce31965a0162984f6130859

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ac3215316ceb1d12386de35bce5f4f47ccd81406714195f884a92ac557f9199
MD5 e268d47f08d9670eda4753061aa969d3
BLAKE2b-256 e0582da33c4e4fe9946d00915e14ece928aca820f2c997f02cf79de625ea7b05

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 668e41e2f0bc030bb004dcf8357ff114df8fa2fddfc7e0154b83dee0b4764321
MD5 fe70d9a37495edf83d355d2beec0b679
BLAKE2b-256 0969765c37bcbca13148270d8b5426ca0aeaffbf133345fbeb3d1ccf585e7130

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 947a6b327cd83b23c66184e2e92420c98852f5615c0eff2e441837a46f9db175
MD5 b5bf060e7ab7db8f3f74c90cdd7c0aa4
BLAKE2b-256 cf0e8102530c6f2316efddaf9aa3b1b48acaaf7c143149907ca3ddea611acf4d

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47d2a0ca5bd953815bd91f383370bb250a9f4516dce65154c9b681ea4e59d235
MD5 e230ab68f2ca3f954de819688b61fc49
BLAKE2b-256 ed51a111b8e8c2b2f3ff70ccdf803ac8a2db05b6dfae84136580be09fd24a575

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e5c246df6a2b799e72a6ba24f7bcff09e35797eeb99c455f51cd27a20726420
MD5 d91320da7c9bb88544fbf6f2a9935a72
BLAKE2b-256 0fecafb4e7efbc3b589a172eb29883ffb1496b4d23a22068f5e57ea1181f90ba

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bd04f7fe63eb52b31956df1856b35a1fe77096b44b56658ddab7c75fbd8d826
MD5 05791dbde07ddfb0be682a75a7c9e99a
BLAKE2b-256 90b71e374bb3b7c027c9d541cf0593aa29bfe9c1b8673198ddc89384ed4c2cd7

See more details on using hashes here.

File details

Details for the file whenever-0.9.5rc0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.9.5rc0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3b86e5a5077aaecaa20ec0e26fae38a809f510d2dc6008245b1521494fbde56
MD5 fc613b503a95d5a7f45b7d1e36358996
BLAKE2b-256 3613672f4982da5eee471e970553f454b8153eeb117272e2ff109fcb902192f0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page