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.7.tar.gz (140.7 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.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (800.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl (791.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.7-cp314-cp314-win_amd64.whl (439.7 kB view details)

Uploaded CPython 3.14Windows x86-64

python_dateutil_rs-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl (790.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (536.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_dateutil_rs-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl (555.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

python_dateutil_rs-0.1.7-cp313-cp313-win_amd64.whl (439.9 kB view details)

Uploaded CPython 3.13Windows x86-64

python_dateutil_rs-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (790.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (536.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_dateutil_rs-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl (555.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

python_dateutil_rs-0.1.7-cp312-cp312-win_amd64.whl (439.9 kB view details)

Uploaded CPython 3.12Windows x86-64

python_dateutil_rs-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (790.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (536.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_dateutil_rs-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (555.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

python_dateutil_rs-0.1.7-cp311-cp311-win_amd64.whl (445.9 kB view details)

Uploaded CPython 3.11Windows x86-64

python_dateutil_rs-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (792.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (580.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (577.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (542.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_dateutil_rs-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (547.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

python_dateutil_rs-0.1.7-cp310-cp310-win_amd64.whl (446.1 kB view details)

Uploaded CPython 3.10Windows x86-64

python_dateutil_rs-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (793.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: python_dateutil_rs-0.1.7.tar.gz
  • Upload date:
  • Size: 140.7 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.7.tar.gz
Algorithm Hash digest
SHA256 9d3518875eccb21663bc377aadbcb9bc3a15b149999263f74cb51f73cb51e5db
MD5 424664bf148ffdd90805ab4a5126dcc3
BLAKE2b-256 88e5c4f4204cd8f1989b229506e60b235bb1a2880a86fe672f4aae453010ad67

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7.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.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9183bc59c1a212c7979f35466e1be311f2c6d67e5a13aa00427c6f1f83416271
MD5 8ce2b7ebde471d46808958fd0a462afc
BLAKE2b-256 f9bf4a39d5e4dad4557995fd9e5b210aaf166079b1469094735ba145716122e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 667740902e041909bd6a59baf37ba87d6734097e4cd77577ee57a2bbbdc895c4
MD5 ce992406da36decc7f8f156c33f8b050
BLAKE2b-256 cd4c9251d601ddd06a086213f4528df9c1d81f7ea34771b81a69ee28ea0822af

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb0fd0b0090326c254139b9a22707ddc1da676c1740a43e71cee2656bdca2087
MD5 4c5e5787812b6f901396f0ba52e85223
BLAKE2b-256 948d1f613873f26f1a15730c90b2126880d4b5ec7f447dffd0f30bd0d928b092

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06a1a9e672855f38b14c58644dd44cfcfc7ca08228683d7ac842556b0eb5a8ba
MD5 59b9873a63a6766607a5cd650c51b74a
BLAKE2b-256 a7acd4dbb7348e35b88e0f4bb9d01dfdf6c53320c88c879a30107f0f1e388ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9380e06a991d7bbb5b3211530c196aeccd72772a094cab194afa6225306c9fbc
MD5 a9caab2b7e048aad897b5d80ebe59182
BLAKE2b-256 f27c5c6bf22fd3e0c8455d4c87210d4e2f15677670b7eb0bf24a3735e6b2e4e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94c8127108b441c45a9ba44ff45765673356337b1556725fdd0fe81c33c14744
MD5 50e378dd8ff949026735d34d58f5c795
BLAKE2b-256 8d6a5002e159014efce9dc1b898099be1f68b9be9956e8bf3fe481ca3d20c456

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb6981301034b7dcb208acbb2bb9dfd6900f7482c9f2e5b8d6b6a5a22a468452
MD5 a3ece2691507572e57c40ab483aa8d72
BLAKE2b-256 33e24ca64eb6b1ad1f0f6bc5f4639a374536644df5a36a887ecf759739d5bb9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c6ae1a66af8d90640226936f5e396dba83a9cfa943d1b1b466b3e457fb43987
MD5 38b217aa60e2f43dd8c0afe2a88847d5
BLAKE2b-256 74d14905b5cd38f2f741b298a5090bc838d2c6517c4ee7ad41a57b8880add955

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3dbbe08198bd71d8b96a392f2f5457406a9e7e846d3d77e0bfa026e56924c7af
MD5 94be082ba8aca37fb8010e53c5b6ec70
BLAKE2b-256 4b15e3bba06e76a3b33089dad2ed546548915b56c17e219c62c15a5843da1a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7bf513ce542aca2a026dc353f222f82f0656fa4a22e009db7629f3e82da6e26
MD5 edbbc5d654b04ebe92f2b5b2d42502d4
BLAKE2b-256 f2212c8dd524d464819055d8996b933e42d2136a170d7f463b66a5b0a98877b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e51b5139eb8001a992fe3358f6083941bd90c92b637ca3560dd465616b4690e
MD5 b6e8a1a8aa551f9e68ece9ca390138c0
BLAKE2b-256 ec81f60dd9fceeb614e922124443cde08a03f63b488f145cd7a67b1c0878b9dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6ac25b880239778802d5c9cf290ef412700f71703d4974a92b0abaa6c6fc44d
MD5 c64be019ddfcd4ab9c36af87ce6b0350
BLAKE2b-256 9ab6a2c2ee7a81417fa5f842f1cd751d246706b34a9f39bbf51d79dd3be7fe31

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c51b62b6d8351308a52e29d2fde2f569ffcd769a4bf0c1c08c4dc8357cd65ee
MD5 1a93cd64c4342e3660df5250c1a8ac64
BLAKE2b-256 dba0fb909dbec3b4402327f7fa98baeb201ca48b572c17ea8be6f45a658045c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6eca05807079cd99a0148ae3abaac02dd26d2bf4de12bb9473dac47711cb835a
MD5 aea5c200dd1df53c9936b2ce5fb0a814
BLAKE2b-256 d5dc8a3186d5b25d0277b66799a6505ac22d4ed5229f65c6cc1115de53f17a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6454c87f048186d94b8b4e94a748e8fea45015b1b0755cd9e7a84b8761f973dc
MD5 d88bb6a7f6377c8f7062b79ef225d36f
BLAKE2b-256 457ae86eb4b48dee947d2c0cd9c23b437d285d262a7005a02debacb7d25aae3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d73430f8b802c22fed854dc164e7ccfcac885c97eb10188cf170a3b14a2f0f3
MD5 5a5f8a7f6330f7c3003a44919e10f1ca
BLAKE2b-256 33a5af0172faefe025c2062c8d882c93cae6fc231ca05fa7f7960fcef11a48a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52ec0e9853389dc79f6d2f0a293713b6e356d5a66aa222470daa8e168cb94819
MD5 1d8a9ce27666193cff58a6c58cbaacba
BLAKE2b-256 640c23f46f9ea53a1095d18f7de5f03d4364c5c0bc1a6bfff7df73112949e9dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 808ac3f05b3455c38b52d8fee02ab230884303291bf65757a506b8f42867429f
MD5 c7c3a38120988ada3333cb057567da0e
BLAKE2b-256 c227052942cd718a7cd8c648f61978e7e285fdf31f37278e0ba246e812fa30ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6608163d78b532a5e1b0b95b1293b8c0e596ea64305f38ddc49605851b7df495
MD5 134e5c2726cf3a436f67092f0577f883
BLAKE2b-256 72847dfa50518bf9739526028ff50643c1b69e6a6966254b958955a556aa5a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0fd4ec460b4712f0fedcfab9d2752b83a4c4ded485087de572f789bbb30fef1
MD5 39f48e0785e5a2e155dada909deb1244
BLAKE2b-256 5c33be4ec85d8938aca66385d03997a679c3e31828abdf25352a1c37002a8175

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e4ac204a9bb7f77743cde4da39f9eeb784599edc36bffb1bbc587bbd7c7fccb3
MD5 a9b9d8dc8ead41d85ba11681c246bb9b
BLAKE2b-256 d136b5c92c9999bcee391a8cdb02b69182704796ddadf577b6d0114190ce0aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 271618a6a8249c87fa4fc0550497fcb05b2ef97c362525a412cea0ad80273434
MD5 b8a6f312cf637b7765a8bd0a0c4c313f
BLAKE2b-256 ff7c3686f4c0dcf94f2baac08ff2b23c1a0d8e8e0a911c33c0a0d824fb061b72

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bef223d06e182a3d1d564bc473f62f7b8b253d4ccbecbccb1ec3bb331b102532
MD5 21e07237a0b2fb899869d6b29939c1cd
BLAKE2b-256 c101b765f7a12fa2b620275c99ebf557aecebb0c95db5abce9ec0dca00a687eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40f4c864dfa1fb264a7005fa86de99d545085cf8e16a9c4086bc52f1ac6a5473
MD5 b9c19903ff70648818a315a5d1e8fab3
BLAKE2b-256 5226e91400324258c789c7913157769473ed097294d0604becb46ef6898ea97f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6799111fcfdb5ed6b9f80dd729f6e8af892db6117fb0af596f1a77c6e4fb41a8
MD5 45df29b66961b0e78d2d2102b65539fb
BLAKE2b-256 85c9ae2679b4cf6a082a3e85755b4637a0cd9dcf720b310bb2ab2e1d95a18897

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce2ced9ce1032a9b2d9a8a21a9d1b01105240a22dba3ae6e00248d9134567779
MD5 cc120bc5c2ea3e0b97381d5dc18e370e
BLAKE2b-256 9aacc98a2b3f11c716daadff37955badda3538825c7bff25a3e5bc054c768d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c8d5120e9bd5c1b3bf384e0f08046e84924aec6ed03360db66189585e5cc3f3
MD5 bac47df7dca095700bed1788b02ab484
BLAKE2b-256 153439d42b5489177315d242bdf2a7189d66e354f2dd0a38b248d4761a577890

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6aa2ae7f73e8fa60b0eedd5b6758882aa5e6076c627a1c2706c8b3a064ab965c
MD5 2af64d72ba52b523ca2477314ebd6d49
BLAKE2b-256 2e6d262bc330999d1e28ca9e62f1467441f7db40d032479e3de001f393f233b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f87cbc6debc1104d1031af5089b3a925e5b91cd78fa9c83057a151c54102143
MD5 03fd7a5ad70f11585f603723a944e906
BLAKE2b-256 d95053e01433dd779fe2c9cb18b42b77e54ecae63cf955f91d8ac40838864d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9590374d245bec42af2079ce047f42ba89a78559c04cb56ee09b3613275a290b
MD5 70eb1135641c2df5b0f843387e79a81d
BLAKE2b-256 0b8dc1be0d3de727f1e050fde983bfd5b28205ae958a57a2fac64278e652b251

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6453b6f281723903306b0569043a4ae48e565dd83de0a8f805c4fc474ee1fdc
MD5 05e62253410ffa069e8f537a3b821794
BLAKE2b-256 f78fac149ee32c583a597fbce22e29ad76b5012b5306ed5265a15dddb0682ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c0d1ce64b94edb80e35a371fd3e84f79e409e0a72b9cd4ab94f26e06eff6cbb
MD5 753d5681f48c6afbc8a70ec9f2e6f6b6
BLAKE2b-256 b13a3957dbd7daae5cf396fdc1588aec37672ae70355c96deee64a437d55fdaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c5467b936b669d663a032baf00c94d82f5222e3dfe98673b20d92217f28e116
MD5 ecbe1a8fab3c52dd2f3a19882934e3fc
BLAKE2b-256 a49e6342fde9fe044dae869d4fba011d96143af6b5be144e69115d1dd1b9fe5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 087eea49a799301d840c93276db5f13b67a7892accd031e222c2c17d85a1517f
MD5 8724bfa6287d8f3475f41dd5178e83da
BLAKE2b-256 0b6cd9fd2d0821f763bea14492cbbab2797c56e256bb9ceda25fc9870e793df1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a381637ed129b2a9f527cfa9495d3819e247010f270566c2eb363573798706b6
MD5 a10f2967b55c77eedd7e2d197a9f2b5b
BLAKE2b-256 1366ad93e3d19b8281478cd724d25f77514a10c79b1f57bd709aab5067433e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd3486c5e350f01d33a1474a91fa2a88c30750114c6f28a9e802ab812c47df56
MD5 1ffccc8ac78c9faa50ace6b09123c816
BLAKE2b-256 dc8c6203871e51f1f6e3808f1e7749d83747a401a6dea14e64d93a7c97352ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_dateutil_rs-0.1.7-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