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

Uploaded PyPymusllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl (790.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.6-cp314-cp314-win_amd64.whl (439.6 kB view details)

Uploaded CPython 3.14Windows x86-64

python_dateutil_rs-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl (790.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (545.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_dateutil_rs-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl (555.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

python_dateutil_rs-0.1.6-cp313-cp313-win_amd64.whl (439.8 kB view details)

Uploaded CPython 3.13Windows x86-64

python_dateutil_rs-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (790.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (545.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_dateutil_rs-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (555.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

python_dateutil_rs-0.1.6-cp312-cp312-win_amd64.whl (439.8 kB view details)

Uploaded CPython 3.12Windows x86-64

python_dateutil_rs-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (790.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (545.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_dateutil_rs-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (555.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

python_dateutil_rs-0.1.6-cp311-cp311-win_amd64.whl (445.7 kB view details)

Uploaded CPython 3.11Windows x86-64

python_dateutil_rs-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (792.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (580.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (577.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

python_dateutil_rs-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (550.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_dateutil_rs-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (547.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

python_dateutil_rs-0.1.6-cp310-cp310-win_amd64.whl (445.9 kB view details)

Uploaded CPython 3.10Windows x86-64

python_dateutil_rs-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (792.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_dateutil_rs-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (580.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

python_dateutil_rs-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: python_dateutil_rs-0.1.6.tar.gz
  • Upload date:
  • Size: 140.5 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.6.tar.gz
Algorithm Hash digest
SHA256 0246ed0fa0695078ae7befca9d1151998860567890d40a77b0110cc3c71f8d20
MD5 56586362792240fbc14ccd41b05f6256
BLAKE2b-256 64ebe5cd2fab5f44eebe0d6d78a24a801937dbc54873bb08ab0ee5eca3354700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e550914f26819e9df2ddadc6faf1835efebaa15030e22c6f8b7033aaaf91edf5
MD5 89f7c9e24fc71daaf9429d930195662a
BLAKE2b-256 e41135e4db87983c324b9f328ddc6baf0fe71ec14ee6e31b3bdf0b8c5bed3034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9247c54292b2a8ce6514b9474833b34aeefd5a41c4d46f7f70dc74437ff48cd
MD5 445eddca4f31ae83fdcfb4aac2c5f18e
BLAKE2b-256 985066d808ccbb1479afa84fc8d213f728d2cfb14bbb72783c0736dc4c655bcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b696d522c5205de6a7535d5e624a462864295fea6f3a4de6bb303a3a0ff2834c
MD5 273c9b56477eac6064b0139bbf95b0fa
BLAKE2b-256 939a6c20037f3f0a19cda0a4299df5ce4f5f215812b4099c6b8816219dc687a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b27bbdebda4a14de26d6d724938bc49613673a9168e1afac52ecf5466b48176
MD5 cfcd1445433b728333b52f13d093cd66
BLAKE2b-256 5a8891bcb2fd1f76711ddcfe70af784ac5c425e7d8d8bc0709d88765a0795be2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbaf9798f34d5bc052ce95425ad4d78b823d1b71d4ca70e06bf21d4d0d57feed
MD5 c53cd5dd47828e13548d9566f23886ea
BLAKE2b-256 61f3fb4ae03b582d0f0d482322d77201f7a6c63ec8f2583e00a12cecbb642787

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 704f4ce6e857c090cffe263c6452bf447e540a30d97a01f3688114ec9f58ee42
MD5 cc54aef148d2df9b05ee8415ffd06ad4
BLAKE2b-256 6d25f4925ddb887693e29e16cda79499dcab9ad28c0bf70255b35b99371d7fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eeb732d0f1df93970ba747cf89bd22a782adc5a9a650d2b14c67998a659870a
MD5 f90435c1c1c8dc72a27ae399c9291d0f
BLAKE2b-256 7f018ff82e0500861ab0538396eafeceaa5a0f648be83aefa3fab2fa8433d292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f311ab375ced19e71b9b7f38cd14da994ece5c14ffc38aee6b7cec535894476b
MD5 c71c1f686d25fca209ff5db9a17dcf4c
BLAKE2b-256 368ab7b534f85edaeffb39eb65a0f9c666a5259aec61b25690bfa9e4b18f0227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c641e6fbb489027dfc2dadfc79e689b9600cd77303b83dd1a53634eafa78352f
MD5 002d3a008d83cbe4bac8e3676baf8e9a
BLAKE2b-256 1c3384bd3d8a63cc21e2ea3ccd1615f74a941fa0125d07549b80f4a385524b24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fcdcac4ee3a6bae399e99b5354f4195d595355e9cf66deb56d5567dfe8ab41b
MD5 07733daa3ed072814d8e302034d6ae15
BLAKE2b-256 48743b0d9a47d5429c122df12c63ad82972d72b5c616bf56dd92932840ca5969

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 172ba987e08bb134fc4617499c944959bebab789e1291070c0ed1c9eede22e78
MD5 e07e6ce72b8af2fdb43d005b9f96c2f3
BLAKE2b-256 c00e5ed47fa8da0d5f94c0926677f6c5279d4785d9cf01b70ec5affedb610c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7be945a416e7ce917be1fa5b690de9c49404c7144a0bd778b743698dc78eccab
MD5 1ad62c71d6ddc4299a487a49c87ec718
BLAKE2b-256 44efce9f60d2e1b3349c90a67260b5734fcab52f5a9df6a46597ada3e51e891a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d8dbb7e0a8b175be5a9da32d22eca4678c3aade998a5564edf4c2bd6cbc45f2
MD5 f562b2c6d249f369754f17420c5be146
BLAKE2b-256 cfbbf5e08f368f3f8c6025b95e1ae3d609ad58d3eb0f744a91fedaee328de01f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a8882da830633d6fcf6c348ad1a6cae1c358ef998dc39266f691709922e02f3
MD5 5a325b5ba7f9aed5ecd67fc473322f9d
BLAKE2b-256 aa796bde02727a604f17da277fa6da2d683d84a7b0fdd42215d811b037b58ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f0ccda11159d7316c70d74d96284aaef95c4578753e8c63e75f2b56cff5de7dc
MD5 5d935703457e4eccd09c22c41cd91e46
BLAKE2b-256 0aef5daded378706f3750b6892ada5d025b186479849a568ab3b60528c8df250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3ea5a6ac88f4ad41ed130f270633b7f23e36aa1ac947b6f515e0d65d650e917
MD5 479969d56ae8a6feeb33ff0949f558aa
BLAKE2b-256 964654dbe09586cd19c2816c8c9fa22605289a910e7d2ed8955c7a271af0e25c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79cc0c264bd740ff7f034776264a152c64f2dd15f6892f7ab2deaa90c19b9db0
MD5 0dc84c05d4093a70ae93fcee4089f4bf
BLAKE2b-256 547802e5cb91f457f7770830717c61dd478944af486bd81d6f2a3ea79dd29522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac5d1fbaf9d13c54920092ee35e8784e55c978943a18d355aadfef85f7323398
MD5 c936e134bc5b5051b57c1f8865c1300a
BLAKE2b-256 5a40c3b526800b4a00e5ec66a92cac655772d79ebf4277381607b3fe33f739c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ea0d93a1d35f5cba21a398abef5ed8ba9a30be2c988cd5077a1892f85e6f7b
MD5 74b51f87e56284bea8f0e7865a73f0a7
BLAKE2b-256 452b3c64ebe4c5c20f29d7c2e967c5b4d362a7dacfd2058b98da6dd356e3115a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdd3574c49d59499db69c5008419f51100fe01048f65837974b254db7ae2d945
MD5 fc39c4766afd64d6ec98815e95cfdbe2
BLAKE2b-256 d31316caaeceb3625a9c7029caf8e115d7a1b80932f368b8da76ad3b2325cfe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f0f520ddcb0bf5ceb4adcb0018c77b30c9ca8a5d41f8ce754dc9843f1a4eb14d
MD5 0677a3e23d33e7f2378490ee50017d97
BLAKE2b-256 173accff7ce2de290586285e08fd1be16eb95af299b19536214997cfd26366fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e3241685a79b2bc84bbde7bae09016a74a071ef1804651521d22ec389728313
MD5 e9d11210e1634f2ea465ad4ed8cdbe4e
BLAKE2b-256 1e6fd9ba546628e98b2743e5504845140743db45fdc41dc226abaeb66ddc0d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7047b32cf6d8839e66efb69f1f1dc8826795c8e1ff78e46b106b00922a4fa729
MD5 f834d4bf39b67e8730860a934ca060ee
BLAKE2b-256 7d8a6a80e02f8455ec8624fbb75e4d813ca6d5b90796688a4ecd66edadf17301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f810f9c52d5d170e05edd66588f376846828912896b8d017c727e5126db937f
MD5 ccf96fb9505ff1a75fa6ceafc2fa2a55
BLAKE2b-256 09dc71918edb8df503744dc21b099ad0caf7490c12f376efbc6dbbe252a7d362

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e897ca41103a38b4b38e73f8909e74b058e594ca14bab2807f6c54ff3ee3b7a8
MD5 f05a0dc15593fcc572256a8ef5403bf4
BLAKE2b-256 792478c31af65481e45ef404ca9184fb59586e175bc1654412f339217c1e226b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78ba78ccbd54330b16a79a9ca0963e45839f34614702548501cb7d1f470b6fed
MD5 cc734894d6073d66f3b60cd81e9c44cb
BLAKE2b-256 ec11c42e14a7144f0f985471a5c279942e2cbe887961910bf165ec41ddce0e50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 117e2544a65805380645e8c6c992ccae1e88c651f66b246a5ec881fa6b6ee2cc
MD5 fb0ac1699b2944a62e4506d7092731c2
BLAKE2b-256 385656af6d43cd5414e9005e07e0eba81f82f680bed7d31c0e4e25df098eb9d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d86bb6491a20cf76c099e6991ff165965f6976416ef7491b314bc0eda9a31715
MD5 d19f80603f7aae0b0bc99276dd951a5e
BLAKE2b-256 a889f958471ea72cd9b22db036a4cfad761e3507a6a0cf6cef2ff297ca53b956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 176c66093ce00819bec926d11328359bf5ed5ff211f0d9db6b1dbee5ba77e14f
MD5 c92bbbaa3fe7d7864a61f104a966c703
BLAKE2b-256 7eb5b3748852d9d129b6d2dcd0ff012bbe1bb00392eb2d19af55502257f6e239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5399d5d029c63c9c2d32ca1f509194092b3ab3704043fea4ccde27bf30faafff
MD5 4996a578ef0a707196cb724a2ab01fa5
BLAKE2b-256 a4c1ab0fabc519e34a6821a60d2df0e27814b69319f5d00e66385a402766e26c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8087d0c056b29a90ba5d3d02c5a2b77f31ceb55293205e78e2779179fb89558d
MD5 5838f1be30d6c4e41234b30e1fb5e79e
BLAKE2b-256 4cea69d91e81ba5c08fe6615fbab8241f9ab105d77a60504edd51c0be902cdb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2a30e2cd5f3abbf1202677718427ca7dd15d55074cf8b8d012957a3469508e8
MD5 f7187a344d0a4c444e79667da7fb8594
BLAKE2b-256 076503181108323696ce83c5d19e77adee5f0b42e9a2d00ce790c145b22b2183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 496413841e1989d77b8d739edd7468e0c25a9a46c4b4a15f81d91721148e5994
MD5 0568f64b972c027172a23bcabe4fbd59
BLAKE2b-256 c3531e91c6218d78ce570e4892537ea8e91473242404b474f7af29a520a93a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdc7caa02d9b0440c0a47f6f5027d7e4cacdcab3720346ca535ed7e54e8710b9
MD5 85707457bb21d80a895091e9dfee71f8
BLAKE2b-256 bbe5c81af2b3f8ec841661a53283c46b29eb42ac289995aee27aca9c8af92f34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64363629120863f03b2fbca346f2c130683047493d70de0a1b109affaefe8458
MD5 5bd2c77af99fc15dd91b37e05bbd6780
BLAKE2b-256 ca2a5d7c7e107b82ee8411b0188795379eeccf7534b33a8a251c3524a75089c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_dateutil_rs-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7935e09f6d7ffc6388bffd6a1d64c4c2a9fab5d1b1efe8abc41189fb22e93906
MD5 a2909d6ac687aa4b9510a4eec678fcbc
BLAKE2b-256 697bfe63848e84cf90ba260bde08cb9d301fc2914c38e60cfc6977118c5b121f

See more details on using hashes here.

Provenance

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