Skip to main content

TSFX -- Time Series Feature eXtraction

Project description

TSFX

TSFX -- Time Series Feature eXtraction

About

TSFX is a Python library for extracting features from time series data. Inspired by the great TSFresh library, TSFX aims to provide a similar feature set focused on performance on large datasets. In order to achieve this, TSFX is built on top of the Polars DataFrame library, and feature extractors are implemented in Rust.

Installation

Install from PyPI:

pip install tsfx

Usage

Below is a simple example of extracting features from a time series dataset:

import polars as pl
from tsfx import (
    ExtractionSettings,
    FeatureSetting,
    extract_features,
)

df = pl.DataFrame(
    {
        "id": ["a", "a", "a", "b", "b", "b", "c", "c", "c"],
        "val": [1.0, 2.0, 3.0, 1.0, 2.0, 3.0, 1.0, 2.0, 3.0],
        "value": [4.0, 5.0, 6.0, 6.0, 5.0, 4.0, 4.0, 5.0, 6.0],
    },
).lazy()
settings = ExtractionSettings(
    grouping_cols=["id"],
    feature_setting=FeatureSetting.Efficient,
    value_cols=["val", "value"],
)
gdf = extract_features(df, settings)
gdf = gdf.sort(by="id")
with pl.Config(set_tbl_width_chars=80):
    print(gdf)

which produces the following output:

shape: (3, 314)
┌─────┬────────┬─────────┬─────────┬───┬─────────┬─────────┬─────────┬─────────┐
│ id   length  val__su  val__me    value__  value__  value__  value__ │
│ ---  ---     m_value  an          number_  number_  number_  number_ │
│ str  u32     s        ---         peaks__  peaks__  peaks__  peaks__ │
│              ---      f64         n_3      n_5      n_10     n_50    │
│              f64                  ---      ---      ---      ---     │
│                                   f64      f64      f64      f64     │
╞═════╪════════╪═════════╪═════════╪═══╪═════════╪═════════╪═════════╪═════════╡
│ a    3       6.0      2.0        0.0      0.0      0.0      0.0     │
│ b    3       6.0      2.0        0.0      0.0      0.0      0.0     │
│ c    3       6.0      2.0        0.0      0.0      0.0      0.0     │
└─────┴────────┴─────────┴─────────┴───┴─────────┴─────────┴─────────┴─────────┘

Extracting over a time window

An additional feature of TSFX is the ability to extract features over a time window. Below is an example of extracting features over a 3 year window:

import polars as pl
from tsfx import (
    DynamicGroupBySettings,
    ExtractionSettings,
    FeatureSetting,
    extract_features,
)
tdf = pl.DataFrame(
    {
        "id": ["a", "a", "a", "b", "b", "b", "c", "c", "c"],
        "time": [
            "2001-01-01",
            "2002-01-01",
            "2003-01-01",
            "2001-01-01",
            "2002-01-01",
            "2003-01-01",
            "2001-01-01",
            "2002-01-01",
            "2003-01-01",
        ],
        "val": [1.0, 2.0, 3.0, 1.0, 2.0, 3.0, 1.0, 2.0, 3.0],
        "value": [4.0, 5.0, 6.0, 6.0, 5.0, 4.0, 4.0, 5.0, 6.0],
    },
).lazy()

dyn_settings = DynamicGroupBySettings(
    time_col="time",
    every="3y",
    period="3y",
    offset="0y",
    datetime_format="%Y-%m-%d",
)
settings = ExtractionSettings(
    grouping_cols=["id"],
    value_cols=["val", "value"],
    feature_setting=FeatureSetting.Efficient,
    dynamic_settings=dyn_settings,
)
gdf = extract_features(tdf, settings)
gdf = gdf.sort(by="id")
print(gdf)

which produces the following output:

shape: (3, 317)
┌─────┬────────────┬────────┬─────────────┬───┬─────────────┬────────────┬────────────┬────────────┐
│ id   time        length  val__sum_va    value__numb  value__num  value__num  value__num │
│ ---  ---         ---     lues            er_peaks__n  ber_peaks_  ber_peaks_  ber_peaks_ │
│ str  date        u32     ---             _3           _n_5        _n_10       _n_50      │
│                          f32             ---          ---         ---         ---        │
│                                          f32          f32         f32         f32        │
╞═════╪════════════╪════════╪═════════════╪═══╪═════════════╪════════════╪════════════╪════════════╡
│ a    2001-01-01  3       6.0            0.0          0.0         0.0         0.0        │
│ b    2001-01-01  3       6.0            0.0          0.0         0.0         0.0        │
│ c    2001-01-01  3       6.0            0.0          0.0         0.0         0.0        │
└─────┴────────────┴────────┴─────────────┴───┴─────────────┴────────────┴────────────┴────────────┘

For more examples, see the examples directory.

Feature Coverage Compared to TSFresh

Implemented Function Description
abs_energy(x) Returns the absolute energy of the time series which is the sum over the squared values
absolute_maximum(x) Calculates the highest absolute value of the time series x
absolute_sum_of_changes(x) Returns the sum over the absolute value of consecutive changes in the series x
agg_autocorrelation(x, param) Descriptive statistics on the autocorrelation of the time series
agg_linear_trend(x, param) Calculates a linear least-squares regression for values of the time series that were aggregated over chunks versus the sequence from 0 up to the number of chunks minus one
approximate_entropy(x, m, r) Implements a vectorized Approximate entropy algorithm
ar_coefficient(x, param) This feature calculator fits the unconditional maximum likelihood of an autoregressive AR(k) process
augmented_dickey_fuller(x, param) Does the time series have a unit root?
autocorrelation(x, lag) Calculates the autocorrelation of the specified lag, according to the formula [1]
benford_correlation(x) Useful for anomaly detection applications [1][2]. Returns the correlation from first digit distribution when
binned_entropy(x, max_bins) First bins the values of x into max_bins equidistant bins
c3(x, lag) Uses c3 statistics to measure non linearity in the time series
change_quantiles(x, ql, qh, isabs, f_agg) First fixes a corridor given by the quantiles ql and qh of the distribution of x
cid_ce(x, normalize) This function calculator is an estimate for a time series complexity [1] (A more complex time series has more peaks, valleys etc.).
count_above(x, t) Returns the percentage of values in x that are higher than t
count_above_mean(x) Returns the number of values in x that are higher than the mean of x
count_below(x, t) Returns the percentage of values in x that are lower than t
count_below_mean(x) Returns the number of values in x that are lower than the mean of x
cwt_coefficients(x, param) Calculates a Continuous wavelet transform for the Ricker wavelet, also known as the "Mexican hat wavelet" which is defined by
energy_ratio_by_chunks(x, param) Calculates the sum of squares of chunk i out of N chunks expressed as a ratio with the sum of squares over the whole series.
fft_aggregated(x, param) Returns the spectral centroid (mean), variance, skew, and kurtosis of the absolute fourier transform spectrum
fft_coefficient(x, param) Calculates the fourier coefficients of the one-dimensional discrete Fourier Transform for real input by fast fourier transformation algorithm
first_location_of_maximum(x) Returns the first location of the maximum value of x
first_location_of_minimum(x) Returns the first location of the minimal value of x
fourier_entropy(x, bins) Calculate the binned entropy of the power spectral density of the time series (using the welch method)
friedrich_coefficients(x, param) Coefficients of polynomial h(x), which has been fitted to the deterministic dynamics of Langevin model
has_duplicate(x) Checks if any value in x occurs more than once
has_duplicate_max(x) Checks if the maximum value of x is observed more than once
has_duplicate_min(x) Checks if the minimal value of x is observed more than once
index_mass_quantile(x, param) Calculates the relative index i of time series x where q% of the mass of x lies left of i.
kurtosis(x) Returns the kurtosis of x (calculated with the adjusted Fisher-Pearson standardized moment coefficient G2).
large_standard_deviation(x, r) Does time series have large standard deviation?
last_location_of_maximum(x) Returns the relative last location of the maximum value of x.
last_location_of_minimum(x) Returns the last location of the minimal value of x.
lempel_ziv_complexity(x, bins) Calculate a complexity estimate based on the Lempel-Ziv compression algorithm.
length(x) Returns the length of x
linear_trend(x, param) Calculate a linear least-squares regression for the values of the time series versus the sequence from 0 to length of the time series minus one.
linear_trend_timewise(x, param) Calculate a linear least-squares regression for the values of the time series versus the sequence from 0 to length of the time series minus one.
longest_strike_above_mean(x) Returns the length of the longest consecutive subsequence in x that is bigger than the mean of x
longest_strike_below_mean(x) Returns the length of the longest consecutive subsequence in x that is smaller than the mean of x
matrix_profile(x, param) Calculates the 1-D Matrix Profile[1] and returns Tukey's Five Number Set plus the mean of that Matrix Profile.
max_langevin_fixed_point(x, r, m) Largest fixed point of dynamics :math:argmax_x {h(x)=0} estimated from polynomial h(x), which has been fitted to the deterministic dynamics of Langevin model
maximum(x) Calculates the highest value of the time series x.
mean(x) Returns the mean of x
mean_abs_change(x) Average over first differences.
mean_change(x) Average over time series differences.
mean_n_absolute_max(x, number_of_maxima) Calculates the arithmetic mean of the n absolute maximum values of the time series.
mean_second_derivative_central(x) Returns the mean value of a central approximation of the second derivative
median(x) Returns the median of x
minimum(x) Calculates the lowest value of the time series x.
number_crossing_m(x, m) Calculates the number of crossings of x on m.
number_cwt_peaks(x, n) Number of different peaks in x.
number_peaks(x, n) Calculates the number of peaks of at least support n in the time series x.
partial_autocorrelation(x, param) Calculates the value of the partial autocorrelation function at the given lag.
percentage_of_reoccurring_datapoints_to_all_datapoints(x) Returns the percentage of non-unique data points.
percentage_of_reoccurring_values_to_all_values(x) Returns the percentage of values that are present in the time series more than once.
permutation_entropy(x, tau, dimension) Calculate the permutation entropy.
quantile(x, q) Calculates the q quantile of x.
query_similarity_count(x, param) This feature calculator accepts an input query subsequence parameter, compares the query (under z-normalized Euclidean distance)to all subsequences within the time series, and returns a count of the number of times the query was found in the time series (within some predefined maximum distance threshold).
range_count(x, min, max) Count observed values within the interval [min, max].
ratio_beyond_r_sigma(x, r) Ratio of values that are more than r * std(x) (so r times sigma) away from the mean of x.
ratio_value_number_to_time_series_length(x) Returns a factor which is 1 if all values in the time series occur only once, and below one if this is not the case.
root_mean_square(x) Returns the root mean square (rms) of the time series.
sample_entropy(x) Calculate and return sample entropy of x.
skewness(x) Returns the sample skewness of x (calculated with the adjusted Fisher-Pearson standardized moment coefficient G1).
spkt_welch_density(x, param) This feature calculator estimates the cross power spectral density of the time series x at different frequencies.
standard_deviation(x) Returns the standard deviation of x
sum_of_reoccurring_data_points(x) Returns the sum of all data points, that are present in the time series more than once.
sum_of_reoccurring_values(x) Returns the sum of all values, that are present in the time series more than once.
sum_values(x) Calculates the sum over the time series values
symmetry_looking(x, param) Boolean variable denoting if the distribution of x looks symmetric.
time_reversal_asymmetry_statistic(x, lag) Returns the time reversal asymmetry statistic.
value_count(x, value) Count occurrences of value in time series x.
variance(x) Returns the variance of x
variance_larger_than_standard_deviation(x) Is variance higher than the standard deviation?
variation_coefficient(x) Returns the variation coefficient (standard error / mean, give relative value of variation around mean) of x.

Acknowledgement

The tsfx package was developed within the Vinnova projects DFusion, TolkAI, and SIFT.

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

tsfx-0.3.2.tar.gz (10.8 MB view details)

Uploaded Source

Built Distributions

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

tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (31.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (30.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (33.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl (30.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp314-cp314t-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

tsfx-0.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp314-cp314-win_arm64.whl (21.6 MB view details)

Uploaded CPython 3.14Windows ARM64

tsfx-0.3.2-cp314-cp314-win_amd64.whl (23.9 MB view details)

Uploaded CPython 3.14Windows x86-64

tsfx-0.3.2-cp314-cp314-win32.whl (20.2 MB view details)

Uploaded CPython 3.14Windows x86

tsfx-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp314-cp314-musllinux_1_2_i686.whl (31.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

tsfx-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tsfx-0.3.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (33.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

tsfx-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (24.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tsfx-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tsfx-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl (30.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

tsfx-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp313-cp313-win_arm64.whl (21.6 MB view details)

Uploaded CPython 3.13Windows ARM64

tsfx-0.3.2-cp313-cp313-win_amd64.whl (23.9 MB view details)

Uploaded CPython 3.13Windows x86-64

tsfx-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

tsfx-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tsfx-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (33.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

tsfx-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (24.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tsfx-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tsfx-0.3.2-cp312-cp312-win_arm64.whl (21.6 MB view details)

Uploaded CPython 3.12Windows ARM64

tsfx-0.3.2-cp312-cp312-win_amd64.whl (23.9 MB view details)

Uploaded CPython 3.12Windows x86-64

tsfx-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

tsfx-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tsfx-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (33.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

tsfx-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (24.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tsfx-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tsfx-0.3.2-cp311-cp311-win_amd64.whl (24.0 MB view details)

Uploaded CPython 3.11Windows x86-64

tsfx-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (31.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

tsfx-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tsfx-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (33.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

tsfx-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (24.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tsfx-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tsfx-0.3.2-cp310-cp310-win_amd64.whl (24.0 MB view details)

Uploaded CPython 3.10Windows x86-64

tsfx-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (31.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

tsfx-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tsfx-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (33.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

tsfx-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tsfx-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tsfx-0.3.2-cp39-cp39-musllinux_1_2_i686.whl (31.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

tsfx-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

tsfx-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tsfx-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (33.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

tsfx-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file tsfx-0.3.2.tar.gz.

File metadata

  • Download URL: tsfx-0.3.2.tar.gz
  • Upload date:
  • Size: 10.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2.tar.gz
Algorithm Hash digest
SHA256 0c18992a83f1c06fe924ba398daf4470466a402a2681457e4f325e0754007f98
MD5 0c8fb8042c314554d55c419576898730
BLAKE2b-256 077810488998b1fa75737c226ea83e3f22103bba6c6d5d11bda35d6e1c7ab727

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dfa663b0bcaaf9c47ded62398ef9287e6716d09f0f8985c2ddbdb835a250ea0
MD5 626fc66d45932c46f96b3c485aa7b115
BLAKE2b-256 e97131bf980aedbf5a06f4f8236cb09b3a54383eaf639350896b875c59053f27

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.9 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7604ea303e4ca4dae5bc08d37411e438a25fdc4b3b3b21e84d8ac3eddac21000
MD5 d9721673fc0fd199897a4061dab1a3bd
BLAKE2b-256 8a7bd23311c94412496f61407042645377c339c11777b8ed2f7a63d35f837610

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd435e48529f21350027447b79e062bd139a802546324abe7b5fec51580ee925
MD5 34090e89c34a180f971a5067c64cb2b1
BLAKE2b-256 2c3a793264f3688783f08d128d255dd3bafd68dd30878d86eb12243f0a5ddbff

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4546a58de655bb93814980740e1aaebd001d2ee1020edbc2e973cd09d903b2b4
MD5 2d4aef8314b1606eecc3cc71ac5547e2
BLAKE2b-256 da3042b1e7e627a66c938ba7311a49e621f38f21d907f386ddaabb9c6c77289d

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 33.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cad9d2916db0e874740bcff6de32fdf4aef1a05d88a419dc5c215f9433f23a5e
MD5 55393ca2a8076ed4a35dd33476957319
BLAKE2b-256 c22b72e77db2318edeff737149756b4f30ceae7761648cb5ab7e421fb2d626a7

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0fc29c583ea42ba45d8c6a41503a1559e13822b22485c0e7f0f602b7972e4eb
MD5 57ff4ac774a8f2f9e071670ef610af7d
BLAKE2b-256 5ecbee875ae13de61edfca95fe77a58df79ecca6ab022850d516d8a4f803bc71

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 30.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae4b6574b3be5f784466e8a2894fcc7b348950dc0c6b991883c0a3116770cd5a
MD5 50fdc2bb27489452a39c2f0880ec5bf7
BLAKE2b-256 7fd07e04bb98ad60624645d9eac29966e8fab564f89f0bcb1223821308271110

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df6604163e494ef390d74234c51861875e61a9c458acddc788bddcbba802dab0
MD5 73f34a9f35f7b47680cf5d334d2850c1
BLAKE2b-256 4c7dc6aeb4f25c46f86764ab2fc3d863ab6d318ccf33cf315c34a3263ef52c57

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b699ee711a2145a97c86765ae9ff3c4f9a7b08376bcc5c26af27bdd1693efba
MD5 2c4770f27b9b6aff234f142a3561084c
BLAKE2b-256 87f4d169c12a5821cb7e167c4fe4f58e26250cc544278e153156b7fa5b413759

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c6b619f0c8fbcbb82caecf5f122d5d7f8554b23eb10fe4224e3cda496725f64
MD5 c60ae7f3f892ffe06c9ecbed0805346f
BLAKE2b-256 d126102ffe7f41233cf77922cdf2f6c963f296d945f750dab633b8c8323fa686

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 567c403604ea3e4fcd802f1acae05f190ee5fe1773ff92ad9120237099cc66d8
MD5 8e4d6230f34699fbdbafae662025c45a
BLAKE2b-256 f3c0541981195610f36bfb44e539eb0883080eb3051d0cc4d0597a87d73fe89b

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1fe92317b58735445203e2da4505bdcbe765e90e1f6b33ec09c84d11971ff067
MD5 9b09ea53794441e9333c51fbec14846d
BLAKE2b-256 a6ad9f76d1f502a04412ab32fbf8f852355e7b163acb7e16ee9d94fa96d34e9d

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 20.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a2781c5f57efd34059ade528b178c72131b1439614e59afcc72d530928c30796
MD5 9847330b10ac06323828445662d6aa7a
BLAKE2b-256 9f0a35766b52271947e65ce05e3d4a12e79e59f44d8470009b39c32a8aa4ef3a

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db234b2419fcd45ad1414b010f3705f009ab0928dcb64c3b4877b904a15668d2
MD5 e9ff540bc0a4840e33293934b9101b80
BLAKE2b-256 81f2eeb9b8e44c8cd94341a33c437eb1937e414b56571f8d1b38199bdb264030

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66a4411fab24f72e9823de85886d5d727ab8c8ce4bda22395ef407dec6f2c7b2
MD5 5caeb0ace4315ba6266e04a44e9e4c42
BLAKE2b-256 a6da876308340ba88d4258f5c0cecff7d5380af03d1a92f1e3c8f2aae9d7b66e

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9608cffb7b47df4f5dc92b29c6c47785015ce3b3283146f9ff9a2c76f301f134
MD5 1ba51c5e8d940270908b04c84c98359a
BLAKE2b-256 7758d9c237c975aa8dc0aa03d11278b031d02b2e51602b7fbd241abc36327b20

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d617d84f117ea6d1b4a1fafdc4586aeaf72289e72b2d172c8577b74d1fa2a0e
MD5 2aaaefc629afe5cb1d78a02bbe22de69
BLAKE2b-256 2c2e08bc7e8dac96a4b12a4e8c883c2ec96b5e438fac97ce00d655417b7c5d02

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 33.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7dce971728f1b7160be391a0e32d9d1c8441445c660525e79da9d876c01358ab
MD5 ed4c9bc2d2f0a77adf15f391ca73fd9d
BLAKE2b-256 23a596c6168e1ab27449917657ec14d57f18888351faefb9b6478b6b63b50d54

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 113a1d430bd1b8616afec35561d43fbc0b40085893c30b50e3bba50428f5285e
MD5 a94f829f21c2e5f9a497329ac16228d8
BLAKE2b-256 7f7304cba9dcb9e00c1958af3d5371b20c41c4ed21b990d79cd459e1fb4d29aa

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7da07de255894a67e1321b159a3a97f69761d8fdfd746fdc61c424df1fb2b8b5
MD5 26c8d87222de92ee449e6962773c7edb
BLAKE2b-256 5a27d478a56fd54cd9165e815ea08a48075db23d5d67cdcc5c61ba66a145053f

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab2a678e34e744ad75b764d33662f7ee098505a44aaee2f09289656fcc002dd3
MD5 93a15ffc0261363db6222a1b57432a0f
BLAKE2b-256 6d8d7d1400a419472670dfe1bfe52de555631ee7f2a1911ad8d73056cc29ffea

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 30.9 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b87fc6ddd917e8749b4924327abbe81383be9206c624acf411ef883fe72e0f09
MD5 5ac484ca17c56e0b3ee00ed62e3d0614
BLAKE2b-256 bba24ec309681e8861bac58cf98a861d55787fd90a33b0692edc44d9366e20b6

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 147dc24f92b0c97e19442bfe6ff5d8c63b6c03169c972a996d2f93d6bc25ad47
MD5 99e47296d88df5ae0115fd04758f9394
BLAKE2b-256 be2b4844e1d0a0f760ff4704d462b63c6a989765ee460e330d531bdfb1f73bd2

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3451aaa3625a07c730328a35b1730c824ff0957a97057118497228cc321fa71
MD5 73ae497e7db1aa283fa5cef5f42b1164
BLAKE2b-256 b27e460232df14f4e8381929c421092a28bedba81061fc183117afd770769eb0

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f8ef78db8870e949a0d190f9b2115122c6e31b6a37e65de4cdeda4a023a212c
MD5 fbd3a4fa3a73b9d125c2d473c550313d
BLAKE2b-256 46dfaba91e5ceb31ddadeac9f037aaf847edf13d2f9fda840c2750584ab67057

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2aff0d232a300801aeb27591ac82b2dfc6e4db2687211ffe55f0191db2926fc1
MD5 d4a55c677961ddf180f9bfa58ec47157
BLAKE2b-256 0fd5e7da75ae11d3f947443b254da0fb2e4356c4406c8347be11de0dcfed923a

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 26ad3c155315f486d6bae4a284aed3e9f421a1b52e995a5d30a6cd90db73cbae
MD5 d5a6c90fa72b9806d28777f20dc1af22
BLAKE2b-256 c39db9366dc52534ad7fad9e61f7d7d4d0d1f919ab68176192621753e6e9e3fd

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1287a924a20120e0d97b6ee926e05cc913bab76d62791c8ed12cdf394ae41859
MD5 1c9231a0868d52d53776bb1877f22379
BLAKE2b-256 cadc027667a3ddf0ab026ef5dda5f305c1b9743f98fc0b893878313ffa514252

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ee6574fdb59c2015969ffb1fd381854218c1fab574851b5d68e6d0461b14bf4
MD5 21ecad96f3ad892b8fcaa25329b40c40
BLAKE2b-256 2747b8a79b26aa9044d41d57581c4ca002d117e4e3fe2b41fea79a8622712cfb

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c691995a92ca6e5f0e6b70f7b2dd9aadd8921d7117e4c6d91614a2b1f62d150c
MD5 5a40925c88637218024074cf78b11ba9
BLAKE2b-256 a0ac585aa02dcc4ab5eb754dcc100a0f818cbf5c7eb596c21d643a0b694ab6fa

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55ee3ccc79791ec8af939396cb1b6d23b621560891914172cd7b5a34d2014712
MD5 c27b1ce3ae3cab1116dddf7c8169b0c0
BLAKE2b-256 36f16dffe12f028d403ad9858f2d0312de36861110d461e204f2e419988f8417

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 33.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19266ee9fab37bc6d68e61679ba53f1fd42b11496f3bb53a6b5cb991b53fb581
MD5 0fb99bb5edb41d7f2ab371322044d384
BLAKE2b-256 158e551dcc3dcb358ed8172a812e1a6788b433dfec8b6697b98e34f6ae6e3c24

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72df0919e118ba8c9f9700d686b1789327ddb644f5607dc72f75329d54c8e504
MD5 a2c82de24556d6e3a7800f8189f74995
BLAKE2b-256 34845ddeca9070204ac9e533dcfdd99949554595760355dcb7ec95791fd2c1ad

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 805af5b1be2f5636c9d5585a0f6f9234e218947395a30396b49f26155ecb9fbe
MD5 f8889ba31e2eba4d9f4d295a4b6668de
BLAKE2b-256 6895e07a8c3da1a9802bcc5bc580e54eb16ca2d4f777204305d90ad13e16ea74

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f7aa11272d2c611316f0952bab4ac51c17c4c5dde0046a7b1ba8a52fb0c0fba
MD5 6f9f9e1884503273fd82b3f8a1d4f135
BLAKE2b-256 fa630958446f8ff14a1cd9c1151658d7a306d9fe4ba46e38d546d0663e950670

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8438d93e47ed3932c90c35d1f54c01234834bd8a1fed4d43a3d62f884beb5dae
MD5 ab23474c8a676379345c62a2d3d01e5a
BLAKE2b-256 3d531ae83a283d39483cc4f99963bd2e21b0e26aebbf740613ae1067859d9260

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f51e88bd58f28746f3e28a03471a35aef5f38dfab3785411b4e4e5a3ee4cb0b7
MD5 2d2a725982489381dd267102212ba6f6
BLAKE2b-256 7fb32fe63408145a85e7f980f42da7086b1893e6497370b88bdc2208944ecdf8

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6a3b554cb2cf64d7dabb1caff79b3b582ecab283f058448c9e4a71425b2393f
MD5 eab0c6223a1679f0e0866e15159373ea
BLAKE2b-256 7fbef0a3fab2acc992b44d4ed7be50d7c444512c0e9dfc22ebe37f69d911c027

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d12be987fbe90978c11906c47be0382638409778aed9eee21ac7f95902d7d0f6
MD5 17121d2707e5431af10b011d0245b28a
BLAKE2b-256 2ddd17a28aa855f474616798b1cf8885e71b7db61d36b6f0ade7bf0960bec9ad

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f89e62f14e056e5ab8c03cfb99a9f4a44c984b15631a79e9d7c6d8241651b6a
MD5 369ceaf6cdf25cf8e0a032adc5b06836
BLAKE2b-256 5832d4b51d549d4cad9500ccd1ba74dd89f68a05e0be2de703900dbfdbce6bff

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb238f5652234531c83352c118338a96648f2d997719386d1333409a959e433e
MD5 9d4d702cb7cc9a4196c42b1f5228cef7
BLAKE2b-256 6119b76677c8ca22e950bb7e4edd130e8a43d1ed4e7861af529c45339ca5a32f

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 33.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c76d690bb00cc07b26452267cfd83a4dd3bdab36906990c246ea7769a120075
MD5 91bbf0253798a0bb278090448c9e0717
BLAKE2b-256 5e927f37a3fb23b0c583ec3a57e41af7540a110f254377c72386240f528ed390

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14c188c3cd6c31d28da19d4629cea3147afaf19d104a19d3f5fa66e460ac1b9f
MD5 449ba53318ff2b83eb417a67faf87239
BLAKE2b-256 db67ae18c2b916186f9742fc1475fd17492ed906a10e39df13f51becb5d4ef07

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25cf2c6399e2049f58be790c112840ee412cd0602965defec44d60c542be6cbf
MD5 ff19e1881dbe11e0d6a1457d38cfede7
BLAKE2b-256 6681a6eaea1f424f4da37f82b89374c88343bacd3b813337bbd6e422980ca036

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7980418e7db0abc7c9e118cc7f3ffe2ef323a0276c7d47e3da9c8dc291e1282
MD5 9f18767f68be7ec3c3fb7942d5ea10ff
BLAKE2b-256 f17b31f92af93bb3b04b30d7867c30d381f7bb49a1073228f1c3411172f2b60d

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e64730787a5fc49c1be009f8a6463b1b0b1da178edce2b4c59d2458458620bd
MD5 87b224795774f36867a48ba6130e3d13
BLAKE2b-256 2c1561cae408b03dfc2ac173d8b0490ef927bad1fe0e29113725deb3609f37f6

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8186fdda6a690977421ea342fb5d641ad156e2b131b694ec5b246ee644317683
MD5 62f7a23f544fb090d5404b8da8ea8af1
BLAKE2b-256 cce4b945bd669b4c0129bde5106d7fc952d6f7b50248416654efa37da9c9a845

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.9 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f208437dbdf1a93e7bc5d6c0c59ec610f0d495c348dc046691a74e40fb6ffbfa
MD5 2b9ffb056a77a332c0c3f749bffaf7de
BLAKE2b-256 a58c4c741b25e9b9b06839dd6343d255d4f2f7cfd26c49343712e5c12db7b622

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bae201761b93e2b67de32163ca83603bf5b410b6ee095c82bb0b85677a4da1d
MD5 dcc3c2091032719dff0679e57b04c3cb
BLAKE2b-256 7db7a9de409ff8bb57081901ce554c0f61c6c8f9f808b815d1fe7a27f7a979bc

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adf09e14bbbf5f6fea36bae43ddf1186260b9d00d38b096668d8ddbe2081075a
MD5 ff366f630d6d461bde446b7c8fb66aba
BLAKE2b-256 b3547d0cef586db3ca64a055728418dbdf05cc34fec24ef189258a9878810588

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 33.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9839118010acd4cc01c33c43b17505b20686776fc15aaf97cb49f85153021661
MD5 ebedf8f62f7e4ade4888143a7486380e
BLAKE2b-256 3659d22651b0be4dad5e406ebc2f908683a208a5aadd4a0b4e31e69c2788e80e

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cdbece86f2e2cd617de5be19c79f6f27c6be0c8d0dd5a76e227af182ae65019
MD5 3e377c52ebf75d52798dabdf89260388
BLAKE2b-256 6c6f7c5e1c4964633c8d0db8e8b5c6640ec5f0df34ec38da6dcc350baa13761d

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e812ca4641bd57ee7cc40c5457d7aaab42c99bbcd9a8d4c5db40462ede03a5
MD5 d0825096704add9c5bcff262fa9ce3d0
BLAKE2b-256 7d92098fd0e01cf103fcfe92fd440561e99577cc3ef1bf7f4c1c9b924c046f72

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27ba386ef0593b86b80e9fb7ec83f072be33c04403e00fd4983fc52db053ef2f
MD5 1e30e1f69c1a177bde25f0ab79fdc8ea
BLAKE2b-256 992b194e16a6e6af5c2c11059867bfec724c6af6ab46c9ba50f9699677c97598

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6b8b3356cba8d4a04f853c413a22ed68fa82a3b3a3a4ca24392656380b480afc
MD5 7dcb7a8e0e119a8cc9b1c5c5db0f6508
BLAKE2b-256 ec56807a2f8898bb3c49cb3b6427e9a95206001f0da217a7c9b461878e6b8ce4

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28cd9b917a02dd1b56d02f3f31dd7cca3df3147f4da3dd032f3be3687b46a02a
MD5 c5af5137acfbf6d9582489c9180dc854
BLAKE2b-256 3d94544446fbec3cf06775f743cd1ca24778330907b6443c814730d79ee9764d

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c982db4fb84ed4ce2385d7361c2a21a75f48096399c521d07900ab31e1f7b7c
MD5 028301aedfe8a3027f27efcb6dfa10f9
BLAKE2b-256 641a2b05cc5e53205a43415fc25f66caa38189b370bcd162f1582dea9cdd9983

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 760dd05f380cd69fc111c5674fe13749846bcbc216a91b9449f0c9bb0dc2018b
MD5 dde14a94f0a88946c2830d9c9c5e4197
BLAKE2b-256 9e2393aeaa6ffd4e8797cdc9bdd48cceb0d8aee0877f9f6b5bc508cd798351dd

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e270f1fbf01b350c2a835e0886de33ebd738772b0d5a6f8875b0dbe436db756
MD5 753f3177f20158273f252305e89ee2ad
BLAKE2b-256 d4825765804df23d3a7c0bfad398f5a890737be0d2d92780de3857ee5ed1680c

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 33.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9d0a2f3fe11b4fca8aff0d71413c11c8b4dd5950540ba810a603b6b7ad113f5
MD5 58589606b83768396b75b957bf55b2db
BLAKE2b-256 c75a44c5ce6ce05d41cf480b1153ebb5858d47050c29a91699ac8f784aac240e

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 486920645405e6b415b89085eac565fe8688b8c8e076356b5a2e5fd7b10e88d9
MD5 296b06f79fbc9af966f551bd2832ae05
BLAKE2b-256 03de14e309e886720426586a1bc8f200a41a42a88ca139274c5d31a570c5ad22

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5558670353eb312fc2a35edcaa46e2f2f234b7ca08b55d9f044f782d0ec2321f
MD5 a5087017636a4bf0e250dfba27ad449a
BLAKE2b-256 bdea449ae9ca5a59d69cf9c47a2a26335e4d737f5881f6c0c62e57c9e7ff38fe

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 31.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d923b0dfdc41115ee72ed1f710898ec3837d4013eab0e957454c8be249215f77
MD5 8886699db34760e1b4be117c5fc25258
BLAKE2b-256 cbb3a6992a741d520648adead7f4581c194ae28c1ee54affe6d0ff6e1c07577c

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dece267de43d4b03095974de7e300a98a75869682fd1e0183578afcda3e514c
MD5 a0af3044446d0311aa390d22d1f8480e
BLAKE2b-256 52207c2e2c63027a2a5340d6a0f1e89bf2bd677b61b928c53cd6e09a06d26c1d

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2384aac6e2b5e202af8d9516b0ac15fb1a36f9bb0cbee38b02d5599da5d50ca2
MD5 85453b1b993552dd220b4874e30017db
BLAKE2b-256 6354924df9cc8920fa718395f663743510b1c872a9d8ae01c263ccbed29b7eaf

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 33.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3c500c62f44169d83e9c5b9d12d0dd7a0d6163624733c3b008daf94533c1ee8
MD5 f4d01aed815f01925f2206eb9f18f800
BLAKE2b-256 597fa6e0b7f009b2033d0cd6869f1c599a5e2efc329c55fd09977a2d133e7331

See more details on using hashes here.

File details

Details for the file tsfx-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tsfx-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tsfx-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c98fdbafb8f8a748bb193d3d952b0f37646afd4855a6ca6b6068ead910032fbd
MD5 0acefefe487bc6bf288fcd39d3515e7a
BLAKE2b-256 88ce2c693f9d828c18084064f941fadeb503d9c9e5ac8e387c2b46f5c09dd85c

See more details on using hashes here.

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