Skip to main content

Fast, consensus-based date format inference

Reason this release was yanked:

Superseded by 0.1.4

Project description

fastdateinfer

Fast, consensus-based date format inference written in Rust with Python bindings.

License: MIT Python 3.10+

Why?

The problem: Is 01/02/2025 January 2nd or February 1st?

Library Approach Problem
pandas dayfirst=True hint You must know the format
dateutil Guess per-element Inconsistent results
hidateinfer Consensus voting Correct, but slow

The solution: If your data contains 15/03/2025, we know it's DD/MM/YYYY (15 can't be a month). This insight applies to ALL dates, resolving ambiguous ones like 01/02/2025.

fastdateinfer implements this consensus algorithm in Rust — 270x faster than hidateinfer.

Installation

pip install fastdateinfer

Quick Start

import fastdateinfer

# Infer format from dates
result = fastdateinfer.infer(["15/03/2025", "01/02/2025", "28/12/2025"])
print(result.format)      # %d/%m/%Y
print(result.confidence)  # 1.0

# Just get the format string
fmt = fastdateinfer.infer_format(["2025-01-15", "2025-03-20"])
print(fmt)  # %Y-%m-%d

# Use with pandas
import pandas as pd
dates = ["15/03/2025", "01/02/2025", "28/12/2025"]
fmt = fastdateinfer.infer_format(dates)
df = pd.to_datetime(dates, format=fmt)

Benchmarks

vs hidateinfer (Python)

Tested on 29,351 real-world dates across multiple formats:

Library Time Speedup
fastdateinfer 22.5 ms
hidateinfer 6,075 ms 270x slower

vs pandas / polars

Comparison on synthetic data (DD/MM/YYYY format):

Dates fastdateinfer pandas (explicit) pandas (mixed) Ratio
100 0.05 ms 0.24 ms 0.25 ms 5x faster
1,000 0.48 ms 0.97 ms 1.02 ms 2x faster
10,000 0.74 ms 2.14 ms 2.20 ms 3x faster
100,000 3.39 ms 17.00 ms 17.50 ms 5x faster

Note: fastdateinfer does format inference while pandas just parses a known format. Yet fastdateinfer is faster because it samples intelligently (consensus converges with ~1000 dates).

Scaling

Dates Time Per-date
1,000 0.48 ms 0.48 µs
10,000 0.74 ms 0.07 µs
100,000 3.39 ms 0.03 µs
1,000,000 ~35 ms 0.03 µs

Performance is sublinear due to smart sampling — only ~1000 dates are fully analyzed regardless of input size.

Supported Formats

Format Example Output
European 15/03/2025 %d/%m/%Y
American 03/15/2025 %m/%d/%Y
ISO 8601 2025-03-15 %Y-%m-%d
ISO datetime 2025-03-15T10:30:00 %Y-%m-%dT%H:%M:%S
Month name 15 Mar 2025 %d %b %Y
Month name (full) 15 March 2025 %d %B %Y
Month first Mar 15, 2025 %b %d, %Y
2-digit year 15/03/25 %d/%m/%y
With time 15/03/25 10.30.00 %d/%m/%y %H.%M.%S
Month-year only March, 2025 %B, %Y
Day-month only 15/Mar %d/%b

API Reference

infer(dates, prefer_dayfirst=True, min_confidence=0.0, strict=False)

Infer date format from a list of date strings.

Arguments:

  • dates: List of date strings
  • prefer_dayfirst: Use DD/MM for fully ambiguous dates (default: True)
  • min_confidence: Minimum confidence threshold (default: 0.0)
  • strict: Raise error if any date doesn't match (default: False)

Returns: InferResult with:

  • format: strptime format string
  • confidence: float between 0.0 and 1.0
  • token_types: list of resolved token types
result = fastdateinfer.infer(["01/02/2025", "03/04/2025"], prefer_dayfirst=False)
print(result.format)  # %m/%d/%Y (American format)

infer_format(dates, prefer_dayfirst=True)

Convenience function that returns only the format string.

fmt = fastdateinfer.infer_format(["2025-01-15", "2025-03-20"])
print(fmt)  # %Y-%m-%d

infer_batch(columns, prefer_dayfirst=True)

Infer formats for multiple columns at once.

results = fastdateinfer.infer_batch({
    "transaction_date": ["15/03/2025", "01/02/2025"],
    "created_at": ["2025-01-15T10:30:00", "2025-01-16T14:45:00"],
    "value_date": ["15-Mar-2025", "01-Feb-2025"]
})

for col, result in results.items():
    print(f"{col}: {result.format}")
# transaction_date: %d/%m/%Y
# created_at: %Y-%m-%dT%H:%M:%S
# value_date: %d-%b-%Y

How It Works

  1. Tokenize: Split "15/03/2025" into [15, /, 03, /, 2025]
  2. Constrain: 15 can only be Day (>12), 03 could be Day or Month, 2025 is Year
  3. Vote: Across all dates, count evidence for each position
  4. Resolve: Position 1 has strong Day evidence → Position 2 must be Month
  5. Format: Output %d/%m/%Y

The key insight: consensus converges quickly. Even with 1 million dates, we only need to analyze ~1000 to determine the format with high confidence.

Use Cases

CSV/Data Processing

import pandas as pd
import fastdateinfer

# Read raw data
df = pd.read_csv("data.csv")

# Detect format automatically
fmt = fastdateinfer.infer_format(df["date"].dropna().tolist())

# Parse with detected format
df["date"] = pd.to_datetime(df["date"], format=fmt)

Multi-format Data Pipeline

# Different columns may have different formats
results = fastdateinfer.infer_batch({
    col: df[col].dropna().astype(str).tolist()
    for col in ["date", "value_date", "created_at"]
})

for col, result in results.items():
    df[col] = pd.to_datetime(df[col], format=result.format)

Validation

# Ensure high confidence
result = fastdateinfer.infer(dates, min_confidence=0.9)
if result.confidence < 0.9:
    raise ValueError(f"Low confidence: {result.confidence}")

Comparison

Feature fastdateinfer hidateinfer pandas dateutil
Consensus-based
Speed (10k dates) 0.74 ms 200 ms 2 ms* N/A
Returns strptime format
Batch inference
Type hints
Pure Rust core

*pandas time is for parsing only (you must already know the format)

Building from Source

# Prerequisites
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
pip install maturin

# Clone and build
git clone https://github.com/coledrain/fastdateinfer
cd fastdateinfer
maturin develop --release

# Run tests
cargo test

License

MIT License. See LICENSE for details.

Contributing

Contributions welcome! Please open an issue or PR on GitHub.

Acknowledgments

  • Inspired by hidateinfer
  • Built with PyO3 for Python bindings
  • Built for high-volume data processing pipelines

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

fastdateinfer-0.1.3.tar.gz (27.4 kB view details)

Uploaded Source

Built Distributions

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

fastdateinfer-0.1.3-cp313-cp313-win_amd64.whl (175.4 kB view details)

Uploaded CPython 3.13Windows x86-64

fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastdateinfer-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (280.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastdateinfer-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (284.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastdateinfer-0.1.3-cp312-cp312-win_amd64.whl (176.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastdateinfer-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (280.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastdateinfer-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastdateinfer-0.1.3-cp311-cp311-win_amd64.whl (177.1 kB view details)

Uploaded CPython 3.11Windows x86-64

fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastdateinfer-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (280.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastdateinfer-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastdateinfer-0.1.3-cp310-cp310-win_amd64.whl (177.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastdateinfer-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (280.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastdateinfer-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file fastdateinfer-0.1.3.tar.gz.

File metadata

  • Download URL: fastdateinfer-0.1.3.tar.gz
  • Upload date:
  • Size: 27.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastdateinfer-0.1.3.tar.gz
Algorithm Hash digest
SHA256 1d2a19d52eabab97c526159b8d7a42cb26d03f51e370b16c6e28714d6a2fb962
MD5 9d5c4d60c7bbc3127cf34ea781b0157e
BLAKE2b-256 84186b1c8e17cbe6c8844e6fbd3724ba7738dc5460eedbf73c5c59f8c0a39065

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3.tar.gz:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 32b6bb7be6b8d0839358abb8bbddfbe27328aff57c3acc9eacc9f997073e8eec
MD5 6ce79e3877329b7dd2decd5666a77b8e
BLAKE2b-256 58633a9b2ff888db81fdeaae64f26bbafdb7c9b190948374462aeebf635b05d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72c7d4569e99c3a9b888cd17eb3938ec43ed1ebe2acf316a5bb6300669be46a5
MD5 ecc70a36a5df27ad7fb397bc87fe4910
BLAKE2b-256 8b9344b2834fb0181786f34ad49dfa65d99857b69226ddc60a79ea9b5a68d98f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4db42f25001e714825fe15cb8a6dd88efbc29d652795e2c1f3f94858a456dbaa
MD5 3e1ad39636f0af4c52a9d1a203199045
BLAKE2b-256 640044f26641773d27967cfa3475559c25c54f48b47afff7bc709412b4f71928

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63cf3d8f01d039bc9f9cada3a490c88c4df33431a529a90c02b8b0c6b5c8127f
MD5 9b3bf4cf81c44d2200c6693655e4381f
BLAKE2b-256 36b7ef36d57fae810a69b183237f54d4f3aa91becdd42c8109d13a7457ad70cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f169c9285f1f4264476bf3ecfd8ad0dac787c0c3b3b946eaf0bbbdfc0300c372
MD5 d9304561ab72b4c7758fa9742784c338
BLAKE2b-256 e715c6d904a13326f992d9e1cb4f8523330f9ace6a5f2cb0c2a4f1d448f7e1dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f2aaeebac15e29bc2a0dffba2c9dfa0ab6d88300a374f750cc56e374804e6187
MD5 b0265746e807829d91b3619052090623
BLAKE2b-256 e778f340dad214d107f92fc41783e7784a59d7167c183032b564131774de7101

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67649e5b909346ee0ea99506892d309bb7120f0d45c0fffcccec13716275d7fa
MD5 82ca2b7caee817c8ecab18df3b93d59b
BLAKE2b-256 63202d0f62294c9733d75061278caedf5d7fde6b18ddba418a216d16e4f730ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11e1a468ad48af3ba38c3efdfd3ed4fbb0fdf4a4fb6d0d72b8443c8c1ab2b36e
MD5 3e74e3705362412a566d220f06dc0b21
BLAKE2b-256 0c6ec21f2e7463b98dcfb6f1527868214a12227b36b69c8209fd55b821a1b839

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 969c8c526f23507985dc9dd788181c4008033133a974f6c3e50e55e16319dcc3
MD5 d8da60b4a0818a1208b1950bfb2c7777
BLAKE2b-256 8344d3b756547adeb261d304e80f8e9164f5f228a352189c557e1b244f943779

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a57fe82ae8ac8e5011b7ac027bf46afe0d2bdf14d0e9de92059c9b9957a8e10d
MD5 bff8b30f5c78b6e0798b8efd4bcbf876
BLAKE2b-256 ae7fd444439d384824a650be30962598c23ad79736ca5e0ead5bff8d7e44505c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fe46fd290bd45f9f18e4a9593f23118120301a93f96393cceaf5227fdffcec91
MD5 0a4a8d1ab44dc6968e77b23344f4a611
BLAKE2b-256 ba182cbe21574a62bae10465a56b4f5673601e1b1f7f2a489b610711b5bb8dd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fc37574125072faedda5acdc9da33eda18f65e113ea27b320218e7dfbbd4b00
MD5 d96f93fec0be93d61b7ac8b73411dd9f
BLAKE2b-256 0c86504bb22394eb7f360cb6866eec987f90273aa5d2df4d2fef5e6708afe60b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94eb00f3dd75f1e57c5da2c6e81a01a8ae12a688d4557fd6a8da8284d4aa3d90
MD5 bc2bb026adda2f56b9fe112b02b2d902
BLAKE2b-256 4157659831e711e6f9b875ea0d63e8cfd964be0d88ced17d7db39a399b6fbefd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af8edb4207c0b6d9994b744a97e7491eb263198fbb1377c94718e1e8f15a6635
MD5 9d211c22b220f298849f349c220189b6
BLAKE2b-256 010ea704824606ce176d961d25c67f7deaf3ef7e26390e8dc3d8007bc94948dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae8ab861ce7e90ca1616e180e66d51735a0c836942d99752edd38b1f2131ceda
MD5 3ef3f76c1c29ddb41cf16db964e8ff84
BLAKE2b-256 7c21668354df4a525f171d7d63f45f0d212500ff534891970eea453a9ba80f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a71fa9915dd1ad4a7b3bbbc6abb3cbc5e567378fc487f08564a3d9a2940ce1a
MD5 a066c50b812022ba170c9999baeb11e7
BLAKE2b-256 6bb14bc41d9acaac85b5051ff14858cfc10a2bd19a28c5612b061b01ab29c6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80a8982bfb724bcf8e00bde476f9b2a33b421121ea98c9a045ecba25628022fb
MD5 e56902b07ea97c7f41c04b60010350e7
BLAKE2b-256 eab94223a854c92d23e54559f74470c749d374d45ab15b903237e936ae43efd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 074658d760097470ad1b84e9f568868ffb906ae86cfd4d2aa7ca590906354bc4
MD5 e8518994f9e10fe28b1d9bf6d2029152
BLAKE2b-256 3ca3394296e9fcf11faee1e35e14744c621227e97c446702319ba09511c68d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0ff3413279dc3a9f3cc30673bab2de546b0f3af2da7477aa329c36aa3679b64
MD5 c5d36edded22e8e94a9b1722fa01338c
BLAKE2b-256 51f667314cb8881b0813c74a4a14232edd7046d8079ca5372e33a284848a56fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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

File details

Details for the file fastdateinfer-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastdateinfer-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99964db9885a51178626a80119cdd86fc87dab904b7e461166c5711aa9acab49
MD5 0faa89b88a7f4ffa2779c47441f980bc
BLAKE2b-256 7b2a62783a187410613da43fccf64cf8445c3c4f61e8e25ab8f89b5be6dca00f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdateinfer-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on ColeDrain/fastdateinfer

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