Skip to main content

fasttime for Python

License

fasttime is a fast, lightweight UTC-focused date/time library for Python, powered by Rust. It provides simple, ergonomic APIs for working with dates, times, and durations with nanosecond precision.

Features

  • Fast: Built with Rust using Ben Joffe's constant-time 64-bit days→date algorithm
  • Simple: Clean, Pythonic API for common date/time operations
  • Precise: Nanosecond precision for all time values
  • UTC-focused: All datetime operations are in UTC by default
  • RFC 3339 support: Parse and format timestamps with fixed offsets
  • Type-safe: Full type hints for better IDE support and type checking

Installation

pip install fasttime-rs

Requires Python 3.10 or later.

Quick Start

import fasttime

# Create dates
date = fasttime.Date(2024, 1, 15)
print(date)  # 2024-01-15
print(date.weekday())  # Weekday.Monday
print(date.ordinal())  # 15

# Work with times
time = fasttime.Time(14, 30, 45, nanosecond=123_456_789)
print(time)  # 14:30:45.123456789

# Combine into UTC datetimes
dt = fasttime.DateTime(date, time)
print(dt)  # 2024-01-15T14:30:45.123456789Z

# Get current UTC time
now = fasttime.DateTime.now_utc()
print(f"Current UTC time: {now}")

# Work with durations
later = now.add_duration(fasttime.Duration.seconds(3600))
diff = later.difference(now)
print(f"Difference: {diff.total_seconds()} seconds")

# Parse from strings
parsed_date = fasttime.Date.parse("2024-12-25")
parsed_time = fasttime.Time.parse("23:59:59.999")
parsed_dt = fasttime.DateTime.parse("2024-12-25T23:59:59.999Z")

# Work with time zones (fixed offsets)
offset = fasttime.UtcOffset.from_hours_minutes(True, 5, 30)  # +05:30
local_dt = fasttime.OffsetDateTime.from_local(date, time, offset)
print(local_dt)  # 2024-01-15T14:30:45.123456789+05:30

# Unix timestamps
timestamp = dt.unix_timestamp()  # seconds
timestamp_ns = dt.unix_timestamp_nanos()  # nanoseconds
dt_from_ts = fasttime.DateTime.from_unix_timestamp(timestamp, 123_456_789)

API Reference

Date

A Gregorian calendar date (year, month, day).

# Constructor
date = fasttime.Date(year: int, month: int, day: int)

# Properties
date.year: int        # Year (i32 range)
date.month: int       # Month (1-12)
date.day: int         # Day (1-31)

# Methods
date.weekday() -> Weekday              # Get day of week
date.ordinal() -> int                  # Day of year (1-366)
date.add_days(days: int) -> Date       # Add/subtract days
date.days_since_unix_epoch() -> int    # Days since 1970-01-01

# Class methods
Date.from_days_since_unix_epoch(days: int) -> Date
Date.parse(s: str) -> Date             # Parse "YYYY-MM-DD"

Time

A time of day with nanosecond precision.

# Constructor
time = fasttime.Time(hour: int, minute: int, second: int, nanosecond: int = 0)

# Properties
time.hour: int         # Hour (0-23)
time.minute: int       # Minute (0-59)
time.second: int       # Second (0-59)
time.nanosecond: int   # Nanosecond (0-999,999,999)

# Methods
time.seconds_since_midnight() -> int   # Total seconds (ignoring nanos)
time.nanos_since_midnight() -> int     # Total nanoseconds

# Class methods
Time.parse(s: str) -> Time             # Parse "HH:MM:SS[.fffffffff]"

DateTime

A UTC date and time.

# Constructor
dt = fasttime.DateTime(date: Date, time: Time)

# Properties
dt.date: Date
dt.time: Time

# Methods
dt.unix_timestamp() -> int                      # Seconds since Unix epoch
dt.unix_timestamp_nanos() -> int                # Nanoseconds since Unix epoch
dt.add_duration(dur: Duration) -> DateTime      # Add a duration
dt.difference(other: DateTime) -> Duration      # Calculate difference

# Class methods
DateTime.from_unix_timestamp(secs: int, nanos: int = 0) -> DateTime
DateTime.now_utc() -> DateTime                  # Current UTC time
DateTime.parse(s: str) -> DateTime              # Parse "YYYY-MM-DDTHH:MM:SS[.fff]Z"

Duration

A signed duration with nanosecond precision.

# Class methods (constructors)
Duration.seconds(secs: int) -> Duration
Duration.milliseconds(ms: int) -> Duration
Duration.microseconds(us: int) -> Duration
Duration.nanoseconds(ns: int) -> Duration

# Methods
dur.total_seconds() -> float      # Total seconds as float
dur.total_nanos() -> int          # Total nanoseconds as int

# Operators
dur1 + dur2                       # Add durations
dur1 - dur2                       # Subtract durations
-dur                              # Negate duration
dur1 < dur2                       # Compare durations

UtcOffset

A fixed offset from UTC.

# Class methods
UtcOffset.from_seconds(seconds: int) -> UtcOffset
UtcOffset.from_hours_minutes(sign_positive: bool, hours: int, minutes: int) -> UtcOffset

# Methods
offset.as_seconds() -> int        # Total offset in seconds
offset.is_utc() -> bool           # True if offset is zero

OffsetDateTime

A datetime with a fixed UTC offset (RFC 3339 style).

# Class methods
OffsetDateTime.from_utc(utc: DateTime, offset: UtcOffset) -> OffsetDateTime
OffsetDateTime.from_local(date: Date, time: Time, offset: UtcOffset) -> OffsetDateTime
OffsetDateTime.parse(s: str) -> OffsetDateTime  # Parse RFC 3339

# Properties
odt.utc: DateTime                 # UTC datetime
odt.offset: UtcOffset             # Offset from UTC

# Methods
odt.to_local() -> DateTime                          # Convert to local datetime
odt.unix_timestamp() -> int                         # Seconds since Unix epoch
odt.unix_timestamp_nanos() -> int                   # Nanoseconds since Unix epoch
odt.add_duration(dur: Duration) -> OffsetDateTime   # Add a duration
odt.difference(other: OffsetDateTime) -> Duration   # Calculate difference

Weekday

An enumeration of weekdays (ISO order, Monday = 1).

# Constants
Weekday.MONDAY
Weekday.TUESDAY
Weekday.WEDNESDAY
Weekday.THURSDAY
Weekday.FRIDAY
Weekday.SATURDAY
Weekday.SUNDAY

# Methods
weekday.number_from_monday() -> int  # 1-7

Examples

See the python/examples/ directory for more examples:

Comparison with Other Libraries

Feature fasttime datetime (stdlib) pendulum arrow
Speed ⚡ Very Fast (Rust) Fast (C) Moderate Moderate
Nanosecond precision ❌ (microsecond) ❌ (microsecond) ❌ (microsecond)
UTC-focused Partial
RFC 3339 parsing
Timezone database ❌ (fixed offset only)
Dependencies None (after build) None Many Many
Memory footprint Small Small Large Large

When to use fasttime:

  • You need UTC timestamps and simple date/time operations
  • You want nanosecond precision
  • You prefer a minimal, fast library without heavy dependencies
  • You're working with logs, metrics, or APIs using ISO 8601/RFC 3339

When to use other libraries:

  • You need full timezone database support (use pendulum or zoneinfo)
  • You need complex calendar/business day calculations
  • You're already using the standard library and don't need extra precision

Performance

fasttime is built with Rust and uses highly optimized algorithms for date/time conversions:

  • Days ↔ Date conversion: Uses Ben Joffe's constant-time algorithm (no division/modulo)
  • Unix timestamp conversion: O(1) operations
  • Parsing: Minimal allocations, direct byte processing

Typical operations complete in microseconds, making it suitable for high-throughput applications.

Development

Building from Source

# Install maturin
pip install maturin

# Build the package
maturin develop

# Run tests
pytest python/tests/

Running Examples

python python/examples/basic_usage.py

License

Licensed under the Apache License, Version 2.0. See LICENSE for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Download files

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

Source Distribution

fasttime_rs-0.3.0.tar.gz (208.7 kB view details)

Uploaded Source

Built Distributions

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

fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (520.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (494.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fasttime_rs-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (517.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (490.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fasttime_rs-0.3.0-cp314-cp314-win_amd64.whl (165.4 kB view details)

Uploaded CPython 3.14Windows x86-64

fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (517.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (490.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fasttime_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (277.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fasttime_rs-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (276.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fasttime_rs-0.3.0-cp313-cp313-win_amd64.whl (163.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (515.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (488.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fasttime_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (275.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fasttime_rs-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fasttime_rs-0.3.0-cp312-cp312-win_amd64.whl (164.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (488.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fasttime_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (275.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fasttime_rs-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (274.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fasttime_rs-0.3.0-cp311-cp311-win_amd64.whl (167.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (518.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (493.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (312.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fasttime_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (280.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fasttime_rs-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (275.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fasttime_rs-0.3.0-cp310-cp310-win_amd64.whl (167.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (519.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (493.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (312.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fasttime_rs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (280.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fasttime_rs-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (275.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file fasttime_rs-0.3.0.tar.gz.

File metadata

  • Download URL: fasttime_rs-0.3.0.tar.gz
  • Upload date:
  • Size: 208.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fasttime_rs-0.3.0.tar.gz
Algorithm Hash digest
SHA256 c4a52c037662cf754d4e35699a3d65ba3d81018561dee259ed79d1242be0ad09
MD5 0990b0ac9283688b04049110d6fa2bfb
BLAKE2b-256 6356bab62e7b47c59f13fa2531ed5d9a5c37b424c3892f48f31b8add4467b0c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0.tar.gz:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42d09a7fc323edf8fccf3355fcab2b700cd39ccfb15bd2f6b58835c8fc785dd4
MD5 7817b0a8d6f470887459f7931b8a6f44
BLAKE2b-256 dffb772e08eae37de65ab7000883fd9d2fcafd70ff80b1722356b2bde87d21cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2b76f115471b32bb08cc10b1782e59e977267d8eb3a2cfbb671c5a021cb035a
MD5 341f2fd4ccf1ca8bd192cbe6c7adf5d4
BLAKE2b-256 7bcb25e33e7834596b4014720d076a1cc6bca17d0dafcd099861ec60af170679

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 567b138fe7eaf5dd629b512519836f90c70814c4f93e64b820dc67f86c03dfc1
MD5 856a2d0e445cdf335d0faaefb91c8143
BLAKE2b-256 763063502a354f992364ccb0c46cf88c628a48ad3debd008b4614118cff87701

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d5784652d8b0ddedb65eb4649b568dfd6c1b7ad0e8449c5a9773132589265f2
MD5 a9458df943748842da17441b8c29b220
BLAKE2b-256 f19195af84ee16d7250fa6023a6df6e9a23cd7ca08131382f296888153009191

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 813656a3dda4595e1ab36d38cf4eafb5b6ac119ab10fb31fa53a84a9bc763760
MD5 0ec1ca7432f5b414ae30cd92b2763677
BLAKE2b-256 765a7d5c15e4bc27842bff3b6c1a4443473eb6570a391049181096856b04693c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb9b4455e4993b0fc5c740e3618f828c21ffea66d6b361f2ddb6374daff7dfee
MD5 20e5b1f7063ac4569367d145fc34b837
BLAKE2b-256 eecc3e1a3d54ef405db767986f531f342a0795bf8411a617db75adbcda171bb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e34abaea0d420a0d3bb8d29728e71937034281160c2ffa9e9bbc3e6e6c42a14
MD5 53f76ecd0e3448bad0dd5ecfa3a9be56
BLAKE2b-256 ddb20abbf5575756b546b599d221acc527251ad65175eb1133b75f886a818f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78810cb9f41776979383714df82a51201ad9c7696daadd4d6ce1bdc09dd6050b
MD5 f702be16be1ede1f65d7f82ddbbc103e
BLAKE2b-256 68e1f8fe33d19de42b901764e9c6ec55ddbe7dd0f21637a40b9013da060bd947

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee12982715cf7765665b392160eda85f0fe51da02ad8effe30714959d1738e5f
MD5 911a9a54101caa3550d772a97a2895a3
BLAKE2b-256 56f3d20f814f702c5d367f558f335573d88f5980fa6bd2b29d6846dd3a503b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3760a56aeccfefa0e94171bc36e20cafd42e9f8bfa74eee9a6ab024dac424e0
MD5 a5f11b75e9fae85a1c5ed82522660795
BLAKE2b-256 1de81e5ad4c238c8eb1ec405afd4253e0442a82643e5617fde2e269f148ecd4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fasttime_rs-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 165.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d4cc8543c944c9b7e808adea634281d0521c85bce99cfb7a31f57cb96155db6e
MD5 523c2c738f9408b3b78cfbea381e435c
BLAKE2b-256 323bd58a4b4dc341ed92390189a3ed61aba2883f62b497d717e89296a0969e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f0249aeae0780a2ec23c055cabf287c9d25b8826d02091f6af0d6a53e569676
MD5 0c947ce11be3307bb00c8c9f92ea75ac
BLAKE2b-256 2ebac3f7480cf25553086c69b2240ec549ae976956c1ea058e6ced216ff242dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8d1fa95ff52b2f4fc3e46f4a25292b4f686313588cd223d03d069275a7e2005
MD5 b5faef14d224d4627d9bda00b64fecff
BLAKE2b-256 8fb4ebf2748459b0e6024a1f43154e2341a5110dfa724d06377451fbd0cf1cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b542b13c458252cfacae71116abd0f71307e1f12540aacb3ad0f4595743aae74
MD5 ab1927aff68cefce68748ec1fcdfd073
BLAKE2b-256 16a098e141a35a9a6cfad55610ec00886fca353a52f1a84e74977d6142cd72a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52edb6a3b112be5194d334e44a5eb979d80e3e4e84158412ce36b0e18d56cf82
MD5 defe145a2172f980cb138b298905946c
BLAKE2b-256 cb33078d7bbce122d702e5ad458dd70e9aca597f7673fb426ae0d1c11e402ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ff45376be22ad9e90d74335de15b87f00400ff5b6e73048e0b0e689a158a24a
MD5 e91462fbf52832a9777dd88de6f64db2
BLAKE2b-256 01db66fef35e003b510ef2fb331bba8418e3c05577cddac4d6e46e318f85d9c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f58f23f97ef7b4fb5826948f89bad1ea2e62b57f4a10ca77433762dff02a9939
MD5 cfc0b6f54958b28df88a42c3fede9c74
BLAKE2b-256 a3926bd32609e3f6a1e29f6d773d497084b146fb419911c5e48562e433228e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fasttime_rs-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 163.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fasttime_rs-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7ab0c843e36304327cfd2b7370a23c4ea5ff843183b072feccba9ecab3bd01f
MD5 b8f18776a8b675307acbf718d801dac9
BLAKE2b-256 9632eaeda13a940a2d8588258676b981bd9c86e31c2909750e60147b7920bad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acdb1af0c07340d821ba769af4937fc8cf3a774b9ac167832b3cb3da9005945d
MD5 6d1213a79010246b5275f7d965272726
BLAKE2b-256 8e8ad736a4a7bc05b652eb508b748f419efca5f61797cf1e628e72f63a8af534

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 336dd410a3207b80662772daec1b5cb7360e986f605547dae6adb48e4af050d3
MD5 52e0bbd3fc6fa403158679a715fb1a7f
BLAKE2b-256 4ab9c13e661bb71d81c110530b1adb9f22dea0cf1c98a52510eadb83ad7f2516

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eebde7215dbec67aaac14b41ea1e76a43cd724e4f75264ba48f20dbacc9d4294
MD5 2c63e1554e5cfceb578aedd224472cac
BLAKE2b-256 f1097e508e3066e91a8c326e10494d0e09e68bee70dbfb27b692e5a15844064b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ebd3bf4d9b7fd4fd829f991916f2c7e8d59b00cf1ee549cf86eef57119ddb63
MD5 9c42580b1934c0af2512e0015aa41bf3
BLAKE2b-256 9aa2daedf5badb13e742d7a5d159f497c532a410ebeac6513a1d8d94892ccbb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e4ec23c03c714f61314d81f8f6f4470f6049d0c6516d2fcf18960d6dc83496
MD5 7eceebfbec2d2ef6961bdcfc9ed50fd5
BLAKE2b-256 82cbbf2bb3fd8608a12c988f2878bf3cbc13ed1773b9b93acfceaa39dffb7bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26754f5a5c684e62c8555ee16a2233031db24596ce975ebbe0af40e04048d903
MD5 6059784c3e0bad575ca0746f0b632ea4
BLAKE2b-256 325b3d079b028689429fe300fe003b631a58e610e4b2da1a45efb0e866ccab4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fasttime_rs-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fasttime_rs-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ebd29c59d1de1e2b82bf078d24b14fda3918562cd287ebe9566685bf9b4f2700
MD5 3ff2c78c6a1565245e4b388070f0e3d4
BLAKE2b-256 f012d946462e06dae2b295ec28a1672f64f96d174cca11708e1d726390af92c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be4352e01ac4f9d00bec6e83274b15af472c524699777ea2a06b6b2c2840bf54
MD5 ac4e5a2400f29680432e196b64262841
BLAKE2b-256 9d37213f9aff7f44126f7082cbc021b7b4cbec2e4dfa62c3a00960ae5a618ddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1111ef856d63c047d0215dec152fbc6848511157037aee5a4a1015ff6fc9f2a3
MD5 3c587e4a35f5763c636cd0df002f1e75
BLAKE2b-256 6413746799e2fea71f5448288ef49009849ae617c0971d90e32c39d1ffae8a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a789c25694387f9b01c24bfaf936fb9cd8103331c920eb6f557ea3d122074e37
MD5 1595e71abcb0fb8d231c0daa6d5f0fd1
BLAKE2b-256 c51e114596e533cf04b1ffd5144df891eea1cf210512413919b315e6a6f0421c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc30414896d174b1d6f1191f6a9650c936223a562654671303fb442c3b4cb72c
MD5 850849b94dcf10db7751754c1ce624cf
BLAKE2b-256 5b7de13ea55b62315649c6f2d60501ebbf5ac7d7e609935d5ad8ac490a2414b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65e54b27edfde4c35d3af1548fddec57c1e9eb80676387f735b55ba317dec57c
MD5 f4ff081078d0f5af878f7687c928591b
BLAKE2b-256 187562238e59ce8683d6e20bd8bf31301c0d372e047bdd0c4cba89df56d2470b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c94e2b35f2dac60072b337b4b76b9ea25e4a48086ae567cf18082792116bf1f
MD5 8879e13648e37d0c2c178beabb0ba416
BLAKE2b-256 22cf6a69f81b9c9fd9880ca5a8c77701781b605de5b5574424dd91bf8d3afcd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fasttime_rs-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 167.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fasttime_rs-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 25a8126635d6d738ce4bdaf17ad9b72a7d08c8a2b1f3cdc1b69c09aff1beb5a5
MD5 b6572194efb801367f668d1904f3df67
BLAKE2b-256 4c0118f217969482db5ac33eac295ac2077811814a45af4b08f89f48b72a2b83

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8dd2de43ff37003f745cf827806b46432166912a10e826bb693065f1f1975f5c
MD5 44aea9ab010bb0dc64599339fc66efe0
BLAKE2b-256 50f9d8a4e148dbc23a19a93795451c5ddfc4fc29a79673616acc5d9a3578767b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 578e0caf367feda78a985a1f936dca7209b9e2c9c9846b2aeeee70904d08b8b1
MD5 d9ee9c306ceeaf85e23a9f9e5333c5cd
BLAKE2b-256 5fec3c2728ef90182c474b855d3219d4ddeaef02518e8666cc9f766a0e6dba5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f65aa19ae1d4f10d951685cfbf05960238bd771ee17bb85896636b61cf9fdf73
MD5 41aa783ea519eefe947566102e9e9c85
BLAKE2b-256 aacc60fa26648218442fda57b29b9845e2f389ddb7595e8af25cbf0619d2e538

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d53bd478fbc835eb7103dda6025f343d28d3231f2833a57b0ccf154313ef52f6
MD5 32db21efde798a3657937a3a572c33dd
BLAKE2b-256 ae5cf4da15bedff9d71247f90387bde284173a72a376b6e4eaf88d85618a424f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfe3f67ef82624ee53db8618de9bb510346352ad3272ef046ae432bf75ab0a9c
MD5 49cca343bc049494bc530ec3f6723ada
BLAKE2b-256 78c7bf8e4ed77d9d5be09c146aa894e0160e089e806d04e8340e655bde6b4304

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1b6440603fa3d83d32eb173e6f0d29cfa3e46464183ca9c6be760b9ddf98155
MD5 a26e3f5c2d3e385fe0cfc165c6a2ccd8
BLAKE2b-256 f19f48ec16d52411eb43a814c849736e278c949e9a09eed81f4ccd117ac1b00a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fasttime_rs-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 167.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fasttime_rs-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71d516fa2ec6da42c4b3700ef2802f1e3757a4f7b824ecc95cf9243437e15984
MD5 a8239619b8e58d3b9fbfb0eda5bb2faf
BLAKE2b-256 068d16ae57af85f40ec7c307cd6564956d2de65fd59a5f7cac7b36e28ffd6319

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c1858c3fbcf9c2d335204ebbce2a2e5791f16a61e253076aa9d21efd9bce524
MD5 22c37d0daa5cd9860122b9e537cea653
BLAKE2b-256 e84d96bf07092361ea200727aef434c0ea27334ad28ef233f70f988b9783bed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08895157bb3d1efb5e6db21d79d24b83ddb96de6691c037861136d4ec92edcc0
MD5 814d763b37ba38bfb74c7049685941f4
BLAKE2b-256 01c31ae9f93b4161542ab3a66d78223fd5030967d8bfe8f7eca09c4accdb0b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a0640d1de4cf273043a80d129b12c71ac63241c32ec79814356d20638f0eee8
MD5 5ee153d5f17766141137800f6c8c8bbc
BLAKE2b-256 09d5e6c5f06aaba8aa7a7de4d0024dc0d55ce18169d2e0a9426005eb477057be

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b8ba161b67595c144e3f7200fdfcd685dcf0cb3d0afd29b5595b906a5f9b8a3
MD5 07bc3ebf28aecf5ea5ee32b6bdf7be25
BLAKE2b-256 02f97a9df8e0a709b37526de0bf2cd1d5fa811f8d0e5e5df901a3dbe37aef27e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2abbce25783e2bbdc8737ce6945ff38d16b8a5bf6e08c7294a76a3d76d676524
MD5 7510c355019f727b9a010268c6622ac0
BLAKE2b-256 9e3a454c08020bf6e76788ef52fcf698e54eda92eaecdfe1dd17b863d30b55b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

File details

Details for the file fasttime_rs-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fasttime_rs-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7af4714c55c568f75844481a79c1bd994e766bd42da6f0ebd5d801efefffb833
MD5 3671c7ac48eac608c90c281cc58e0482
BLAKE2b-256 e62b05cdc53acec899ce9dd0fab737c9c48f5e243de0519ac75d3ff4e73bb296

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttime_rs-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on RustedBytes/fasttime

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

Release history Release notifications | RSS feed

This release

0.3.0 This release

46 files

Supported by

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