Skip to main content

A Rust-backed port of python-dateutil

Project description

python-dateutil-rs

PyPI Python License CI Coverage

A high-performance, drop-in replacement for python-dateutil (v2.9.0), powered by Rust.

Drop-in compatible: Install python-dateutil-rs and your existing from dateutil.parser import parse, from dateutil.tz import tzutc, etc. continue to work — no code changes required, just 2x–897x faster.

Features

  • True drop-in replacement — provides dateutil package with the same submodule structure (dateutil.parser, dateutil.tz, dateutil.relativedelta, dateutil.rrule, dateutil.easter)
  • Zero code changes — existing imports like from dateutil.parser import parse work as-is
  • Rust-accelerated: all core modules rewritten in Rust via PyO3/maturin
  • Optimized core: zero-copy parser, PHF lookup tables, bitflag filters, buffer-reusing rrule
  • freezegun compatible — exposes dateutil.tz.UTC constant for seamless time mocking
  • Comprehensive test suite validated against python-dateutil behavior
  • Python 3.10–3.14 supported on Linux, macOS, and Windows

Installation

pip install python-dateutil-rs

Note: This package provides the dateutil namespace. If you have python-dateutil installed, uninstall it first to avoid conflicts: pip uninstall python-dateutil.

Drop-in Replacement

Existing code that uses python-dateutil works without modification:

# These imports work exactly the same as with python-dateutil
from dateutil.parser import parse, isoparse, parserinfo
from dateutil.tz import tzutc, tzoffset, tzlocal, gettz, UTC
from dateutil.relativedelta import relativedelta
from dateutil.rrule import rrule, rruleset, rrulestr, MONTHLY, WEEKLY, MO, FR
from dateutil.easter import easter, EASTER_WESTERN

Usage

from dateutil.parser import parse, isoparse
from dateutil.relativedelta import relativedelta
from dateutil.rrule import rrule, MONTHLY
from dateutil.tz import gettz, tzutc
from dateutil.easter import easter

# Parse date strings (zero-copy tokenizer)
dt = parse("2026-01-15T10:30:00+09:00")

# ISO-8601 strict parsing
dt = isoparse("2026-01-15T10:30:00")

# Relative deltas
next_month = dt + relativedelta(months=+1)

# Recurrence rules (buffer-reusing iterator)
monthly = rrule(MONTHLY, count=5, dtstart=parse("2026-01-01"))
dates = monthly.all()
dates = list(monthly)           # also iterable
first = monthly[0]              # indexing
subset = monthly[1:3]           # slicing
n = monthly.count()             # total occurrences
dt in monthly                   # membership test

# Timezones
tokyo = gettz("Asia/Tokyo")
utc = tzutc()

# Easter
easter_date = easter(2026)

Flat Import Style

All symbols are also re-exported from the top-level dateutil package:

from dateutil import parse, relativedelta, rrule, gettz, easter

Development

Prerequisites

  • Python 3.10+
  • Rust toolchain
  • uv (recommended) or pip

Setup

git clone https://github.com/wakita181009/dateutil-rs.git
cd dateutil-rs
uv sync --extra dev

Building

# Build the native extension
maturin develop --release

# Development build (faster compilation)
maturin develop -F python

Running Tests

# Run the test suite
uv run pytest tests/ -x -q

# Run with coverage
uv run pytest tests/ --cov=dateutil

# Run Rust tests
cargo test -p dateutil-core
cargo test --workspace

Linting

uv run ruff check tests/ python/
uv run ruff format --check tests/ python/
uv run mypy python/
cargo clippy --workspace

Benchmarks

Performance measured against python-dateutil v2.9.0 (before the drop-in rename). Baseline results are preserved in benchmarks/BASELINE.md.

Summary (vs python-dateutil)

Module Speedup
Parser (parse) 19.5x–36.0x
Parser (isoparse) 13.0x–38.4x
RRule 5.9x–63.7x
Timezone 1.0x–896.7x
RelativeDelta 2.0x–28.1x
Easter 5.0x–7.3x

Measured on Apple Silicon (M-series), Python 3.13, release build.

# Run benchmarks (Rust dateutil only, since the package now occupies the dateutil namespace)
make bench

# Run and save results as JSON
make bench-save

Note: Since python-dateutil-rs provides the same dateutil namespace as python-dateutil, both cannot be installed simultaneously. The baseline comparison numbers above were captured before the namespace unification.

Project Structure

dateutil-rs/
├── Cargo.toml                 # Workspace root
├── pyproject.toml             # Python project config (maturin)
├── crates/
│   ├── dateutil-core/         # Pure Rust optimized core (crates.io)
│   │   └── src/
│   │       ├── lib.rs         # Crate root, public API
│   │       ├── common.rs      # Weekday (MO-SU with N-th occurrence)
│   │       ├── easter.rs      # Easter date calculations
│   │       ├── error.rs       # Shared error types
│   │       ├── relativedelta.rs
│   │       ├── parser.rs      # parse() entry point
│   │       ├── parser/        # tokenizer, parserinfo, isoparser
│   │       ├── rrule.rs       # RRule entry point
│   │       ├── rrule/         # iter, parse (rrulestr), set
│   │       └── tz/            # tzutc, tzoffset, tzfile, tzlocal
│   └── dateutil-py/           # PyO3 binding layer → PyPI package
│       └── src/
│           ├── lib.rs         # Module registration
│           ├── py.rs          # Binding root + #[pymodule]
│           └── py/            # Per-module bindings (common, conv, easter, parser, relativedelta, rrule, tz)
├── python/dateutil/        # Python package (drop-in replacement for python-dateutil)
│   ├── __init__.py            # Re-exports from Rust native module
│   ├── _native.pyi            # Type stubs for native module
│   ├── py.typed               # PEP 561 marker
│   ├── parser.py              # dateutil.parser (parse, isoparse, parserinfo)
│   ├── tz.py                  # dateutil.tz (tzutc, tzoffset, gettz, UTC, ...)
│   ├── relativedelta.py       # dateutil.relativedelta
│   ├── rrule.py               # dateutil.rrule (rrule, rruleset, rrulestr, freq constants)
│   └── easter.py              # dateutil.easter (easter, calendar constants)
├── tests/                     # Python test suite
├── benchmarks/                # pytest-benchmark comparisons
├── .github/workflows/         # CI (ci.yml, publish.yml)
├── Makefile
└── LICENSE

Crate Roles

Crate Purpose PyO3 Publish To
dateutil-core Pure Rust optimized core No crates.io
dateutil-py PyO3 binding layer Yes PyPI (python-dateutil-rs)

Compatibility with python-dateutil

Target: python-dateutil v2.9.0. The goal is covering the 95%+ of real-world usage — the symbols that actually appear in application code — while intentionally omitting a small number of rarely-used features in exchange for a smaller, faster core. If a symbol below is listed as supported, it is a drop-in for the python-dateutil equivalent in both import path and call signature.

Supported API surface

Submodule Symbol Status Notes
dateutil.parser parse(timestr, ...) default, ignoretz, tzinfos, dayfirst, yearfirst, parserinfo all honored
dateutil.parser isoparse / isoparser ISO-8601 strict parsing
dateutil.parser parserinfo Customizable via Python subclass (override WEEKDAYS, MONTHS, HMS, AMPM, UTCZONE, PERTAIN, JUMP, TZOFFSET)
dateutil.parser ParserError, UnknownTimezoneWarning Same exception hierarchy
dateutil.tz tzutc, tzoffset, tzlocal, tzfile Rust-native implementations
dateutil.tz UTC Singleton tzutc() — works with freezegun
dateutil.tz gettz(name) IANA lookup with caching; honors PYTHONTZPATH; auto-bootstraps tzdata PyPI package on Windows
dateutil.tz enfold, datetime_exists, datetime_ambiguous, resolve_imaginary Same semantics for DST gaps/folds
dateutil.relativedelta relativedelta All absolute/relative kwargs, weekday N-th occurrence, arithmetic with date/datetime/relativedelta
dateutil.relativedelta MOSU weekday constants Same MO(+1) / MO(-1) API
dateutil.rrule rrule, rruleset, rrulestr RFC 5545 parsing; iteration, indexing, slicing, count(), before/after/between, membership
dateutil.rrule YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, SECONDLY All freq constants
dateutil.rrule MOSU, weekday Re-exported
dateutil.easter easter(year, method=...) EASTER_WESTERN, EASTER_ORTHODOX, EASTER_JULIAN
dateutil.utils today, default_tzinfo, within_delta Pure Python, identical behavior

Intentionally not supported

These features target niche use-cases (typically <1% of real-world imports) and are omitted to keep the core small and fast. If you need them, keep python-dateutil installed in that project.

Symbol Reason
parser.parse(fuzzy=True) / fuzzy_with_tokens=True Fuzzy natural-language parsing is out of scope — use strict parse() or isoparse()
dateutil.tz.tzstr, dateutil.tz.tzrange POSIX TZ string tzinfo (EST5EDT,M3.2.0,M11.1.0). Prefer IANA names via gettz()
dateutil.tz.tzical iCalendar VTIMEZONE parsing. Prefer gettz()
dateutil.zoneinfo submodule Embedded tarball zoneinfo database. The Rust gettz() reads the system IANA database (or the tzdata PyPI package via PYTHONTZPATH) instead
parser.DEFAULTPARSER, DEFAULTTZPARSER module globals Module-level mutable singletons; use parser() / isoparser() instances instead

Behavior caveats

  • Cannot coexist with python-dateutil — both packages provide the dateutil top-level namespace. Uninstall one before installing the other.
  • tzlocal() reads /etc/localtime on each call (python-dateutil caches it). This is the only module where Rust can be slower than upstream (~1.0x). All other tz operations are 10x–897x faster.
  • parserinfo subclasses: override via class attributes (the documented API). Overriding instance methods like validate() is not a supported extension point.

Verification

The tests/ directory ports the upstream python-dateutil test suite and is run against the Rust implementation in CI. A test passing there means behavior matches python-dateutil for that input.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_dateutil_rs-0.1.5.tar.gz (139.4 kB view details)

Uploaded Source

Built Distributions

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

python_dateutil_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (797.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (586.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (585.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (583.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl (796.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (585.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (580.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.5-cp314-cp314-win_amd64.whl (446.7 kB view details)

Uploaded CPython 3.14Windows x86-64

python_dateutil_rs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl (795.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (583.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (580.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (551.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_dateutil_rs-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl (571.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

python_dateutil_rs-0.1.5-cp313-cp313-win_amd64.whl (447.0 kB view details)

Uploaded CPython 3.13Windows x86-64

python_dateutil_rs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (795.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (584.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (581.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (551.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_dateutil_rs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (571.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

python_dateutil_rs-0.1.5-cp312-cp312-win_amd64.whl (446.8 kB view details)

Uploaded CPython 3.12Windows x86-64

python_dateutil_rs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (795.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (584.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (581.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (551.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_dateutil_rs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (571.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

python_dateutil_rs-0.1.5-cp311-cp311-win_amd64.whl (450.3 kB view details)

Uploaded CPython 3.11Windows x86-64

python_dateutil_rs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (796.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (585.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (581.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (551.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_dateutil_rs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (572.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

python_dateutil_rs-0.1.5-cp310-cp310-win_amd64.whl (450.7 kB view details)

Uploaded CPython 3.10Windows x86-64

python_dateutil_rs-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (585.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (582.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file python_dateutil_rs-0.1.5.tar.gz.

File metadata

  • Download URL: python_dateutil_rs-0.1.5.tar.gz
  • Upload date:
  • Size: 139.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_dateutil_rs-0.1.5.tar.gz
Algorithm Hash digest
SHA256 db2c2cfe9a97707132b439b7af4ecbc23ae430b51bee89bffea3983cbf791cf1
MD5 cf1a4dca818eeeeb2a5763d128dd21c9
BLAKE2b-256 031e22d0e83946a61901741cd055e7b315842493cc8e191d00297c43fbc9d618

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5.tar.gz:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aa9e0b9a18bf60c2c075bfdc540c6d9d3baec45721cbdbe4854c92a35212e45
MD5 c4a586361f53cdcdb92ae1f78e483fea
BLAKE2b-256 36489b01f7526906f0aeed3de0bea3a8283bb5139cc7a73ddb8ea5c2b639d65f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd4eec6b586ed4870b666d56fba5610a345793fcb5f574c0ebfd701058e36f8c
MD5 8da5b592fb0349cb5b3322567e651e00
BLAKE2b-256 771dae9ba0937b68cbb0b2f7063c2d5f6acf28c12ae6a08093b5b1d9265b5975

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec910309c895230df10ce1af08f4e822e92f318d15b0da870df056ef48a72aa7
MD5 6e7c37acf2373595dc3a204eb28e5ff3
BLAKE2b-256 48535f7b43e26e0964a37e231e281118605b5a38aa99619ca25850f249092c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa4eb421d5141526e5ed0aee8a3316560a924dda942b3d9666011ea77d7b9e12
MD5 00e69c81545cc8ae7cb379b0f3c0fec6
BLAKE2b-256 a8cd2890a2e69f896c3a898a7221634043a0f3a12b4dce4ba5523bfa2ba24367

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a732296cec9ac9cdf5e29fea3299348fe0bfa547bbb26d9325cead71240d0746
MD5 5a1ce46de3e1ef5f4535d16f9ee1923b
BLAKE2b-256 3fe779baf2d2da6e222ed448872e1ec0f63d24da0d3759ece22ab88223bd61a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d51b8213463b7b4689f8b221d29166bb8d5ae5c814b21fe6370a3ad8acc5b676
MD5 96f012117b1e301af647057488e52eee
BLAKE2b-256 6e72546d093d05979a8045913e29ed96285ba8ffe28ec8c39abf80179f326b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06e00ba2290266382536f6eb6960de8080457920650348b2ea275782eaed9ec0
MD5 40c61d8d5b1f96ad364a0be683756f51
BLAKE2b-256 4c6a5e74edf80b07a752b3e478f065f58604aa9e19ed50538dc4bf3a1b2af561

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fed39c8fc601414a0ea2c6926b2fe9f75ee1e4a712fc9a4b3149fdd031e672f4
MD5 d2b5106393d58048d325a4ebf16856d9
BLAKE2b-256 44f62ca86380e93173b0ac87c2bb78277055299fe1293ad773fc93d23eb79ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2889d9f92d2d41e841f7d79f8d913382fed2affe36ef4d689c32763da8dbc69d
MD5 553db9419025ba929840e637033f0ff3
BLAKE2b-256 ca8a957b19b5a301ab973d5a8c66eba8fbb18fb03e8eb7dcd8e615f743b1262b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9da8cf4d435b45e977d9053837825f7bc5f09278d43c921a9a2658555dc07a24
MD5 b1373dfd838340a4418afc98c3f72237
BLAKE2b-256 c6f6666c5366b716fbf29a13129ae7f08f4f2814c9cd51d1a47b8383f2383af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b05c1537c474699d4850b6285012dc95be303d662df9a4937836c022a6ac7a23
MD5 ddb943dafc876ab052a57cceb560042f
BLAKE2b-256 a4b6c7497ebd2f2059237b1d4d5e468de8fc4fc03ba969410babcb85319aef99

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c9cb9c078f2dd1c392f658e540b0eb320b0201887c71c614b6995954b120dea
MD5 7e1d179f0b7b78fe8dae5cd7cce43fca
BLAKE2b-256 2a9a4b06237775b9c57706e54859cc348c5fda085eac1c2a8ac78e8d1fb832f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 601e1af56268f05f05f92c407af1220d879168b11f3aef76cb644616848c7bc9
MD5 10ce0bfd8143d53095b98c18a1a889c1
BLAKE2b-256 7e3e3ceeb668781e4a5bf71b8e12aeb282d0dbeb7169ebbd3b9fadc5680ff56d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d3fd9ded0d30f3a6c9a7e2a1e5f34db84542bc083934c362cf6d3006159fc6b
MD5 1ee35bae98356aaa4732bc93e19aedfc
BLAKE2b-256 b4b5f912c674d58096da59bfbd364e52761dce7021499cf86e675f8c076c5436

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f518fe718ad2c00669a91b0fccde0be1141ac958f8885f30187460e6aa680640
MD5 3e90078d84c9af7e409da79dbbef85a4
BLAKE2b-256 dbf612a7442ad923efc880a538430f1f8af8b58f2d02e079c15c82caea190192

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d697cdd13ec66d2f78e2ad0fc72275cde00fcbcaa14f004d1d514ec2859b5eb
MD5 bbfc1202b2a728874f79b0f18ffa59fd
BLAKE2b-256 8d9f84523b7c3cd4d9929b3291b4751263e967dc94af778eef77f3517747f6d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0039dbb7627dba39bf0a2e0f44da6897a7b3be2af37c33b58784eb278b8e3b6
MD5 791087992cbb0b89af7cc1d74a518f85
BLAKE2b-256 f3c9e7aef61b35ef20cfec761690e6d3069388b926b47324f5b572dbb007a512

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ebf4819541185c785c626d87bea5a60e4e01ec4427e0c8bba72d6eb664128ae
MD5 38dc43da2fcf0a907e264f39f9082af6
BLAKE2b-256 b37cc97919cec00ebc0772b32d48a67a356b6b0a5705837c5623d00f5db24a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75c169a2193f266d527bb5e93f48aee63d8ad5ce3eb06b80342d6e80a27efb4c
MD5 237bd27a5f9b5bf5c428ef58d6cd893e
BLAKE2b-256 65e9ff050403bb4cd32665a83aeaf71f55965d17d381270de2572ee2a8ea0976

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7d18c998642a1d97c06046f80ff02c1de7d21cdc9d93c5f273b0629282926e3
MD5 991071b9b20b158d3812a3eeef2dc40b
BLAKE2b-256 b5afd833088a00daaf3e93beeb90a2e6626e0cc68fe32025d86a8c7c850795eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e0884767ce0b57300dbce6450b18976ad7fd07c4df0f1f3022bc98be439a9a49
MD5 0d614e9bf194c91377aa5deb4b5ef549
BLAKE2b-256 5a9350dc3fe41b98966b97def2570ebadad354a75b2e5ea7f835f27bc897f9fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3551253b0963d5b3c2232eac34673f73c3379b83c88e206569359535aafbb2c2
MD5 35c3a57338ee6be87a53d51d7d21d99a
BLAKE2b-256 45ddeb03515a7cba98f5cd7783745906291127c33e7866012efc30f5f713a137

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62cc402cc5ce76f6bcaff00877d232fe2778f5b6729282fcf65abf402613b4d9
MD5 b1d108512e7f767bd33bc8065f423502
BLAKE2b-256 9c071d617dbbb0207b5b02a9e4775553002c24289744ea69e7ac97f86b0387fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd6b65c0e2e288b5f40bbf81e0764514b952813a4e9ad82a415db1abd9cc162c
MD5 516d2db6b9a65429cb258aa8cb094d67
BLAKE2b-256 217dce34e04ab58496b70431b1e153d389b9448d9566b69d06c0b2c9a1ff7f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 198e80712edd20ee6b12f4a04b72fd9074fdd2bec511aa28231e386244ac2d19
MD5 30cc9eed4b97fe67dfde3ad3b180af8e
BLAKE2b-256 70e7aadf8a5588f57478ed36df42f0eee407a10863f4c580cba72a1ce86b5577

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ce423b0286bc8b0bf685d07ae0ea39878ea64e9c3a074101fec2836a60d1b0b
MD5 e60971046f962f1da5607343c8be211a
BLAKE2b-256 16d7f3311d354d193ace6199f25e104040e2c839202dfbd2743728881451e093

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0a7690caaa18074320b35ce8efefefb5fb87840a6ace6d28b7b9bff332e0027f
MD5 49514f0e96febeda1bd8ba3b4c599297
BLAKE2b-256 87cf5f264ccee637c273762e61dc4b64e920033b4acf5beed46f6176fcb03fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc5edf701f985701b476f2bae7414af2e56a8a573935f5070b7562bdf7504485
MD5 406b6d8fe56a5875c905e73191b64baa
BLAKE2b-256 2665f06d3d5e8abb4c5d3121ca6d847e13904fd9ec3b2b1417ce72382a6819c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20c5c9d6fe33621ab0df2cab01edc4c8354859ab23bdd9a9ef3125672a8565d2
MD5 88c3a8adcff562aa36b8a93f8b822e7b
BLAKE2b-256 be553242de8738ecae4f1bd24883afc21cfa5cbad95d083575158f3f98a2c70e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2aa06f12c260d612b1d8e603cdb2a7f93e7f7d58f3a3ffe425371a941334709
MD5 636f0c133098d86f1804068f07c84779
BLAKE2b-256 a15cf6536719f3e11b0259724010179eb0df238a0d188e6236ea8cb487faa41d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a2a249fdb933a46f52529b05cec0ce65b9f1069ac40e1db6505f11e8054883b
MD5 e6a4914ae5ca7a913840c5333749a93d
BLAKE2b-256 c923e6ad1d20944afe95aca2500440008378848ee6e1e9329babd619553b0b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8fbe61b9b40a97f16bebe445c4890114f18757c59089149c1ca49c894888f25
MD5 2abb3c5c8f5f42ad16d84e2074c76594
BLAKE2b-256 dbbee1c632ba09ccd39399b0f28029a76d66061eaf0270899ba06d36bd686981

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bf0ff42880184cd5fceff5fafdd8e777d537a3dcd1b180e49febe6ac5c6a579d
MD5 91788d78bb86c962c764de90a5f4a023
BLAKE2b-256 2777189374a20bad4ad5690ee50a6e5c32d7d14b8dcf08b3ff55fb82babc7f08

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 017caae1bc88d4e4a9722ca8f63cc24ce0e8081b29a377483b7198f9f26192a3
MD5 fb0285707f6e63cf762f71eb54889659
BLAKE2b-256 56c8f62b176b13eda4dc0625d3b830b54914e13db7bfe565c98edb4c5dc6fff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e92f44f52d19133f7626865c8c0ff530b1bfbba7bcf89822465775ca033c61d4
MD5 58cdcf83adf081f1bc3679225e6eb34c
BLAKE2b-256 e41d849ada85e7fdfdd8d22c54d3717ff877e5c7b264c111f6bfe8101defd504

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0aa9ef557648f41eaa66e09d7c38830835209bd4ed51c04e5df4c90817bbe18
MD5 4db178339c5604aa8ba9431b5572ab25
BLAKE2b-256 425843eb9501fb7952a4213fd209884cb5790871eae2292b1b6023274f980cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on wakita181009/dateutil-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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