Skip to main content

TSFX -- Time Series Feature eXtraction

Project description

TSFX

CI Docs Docs Build

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

For most common platforms and architectures, pre-built wheels are available. You can install the package directly from PyPI:

pip install tsfx

Installing from Source (Unsupported Targets)

If a pre-built wheel is not available for your specific platform, pip will automatically attempt to build the package from the source distribution (sdist).

Because tsfx is built with Maturin and its core features are implemented in Rust, you will need a Rust compiler to build it from source. Important: Building from source requires an up-to-date nightly Rust toolchain.

To set up your environment for a source build:

  1. Install Rust (if you haven't already) using rustup:

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
    
  2. Install and switch to the nightly toolchain:

    rustup toolchain install nightly
    rustup default nightly
    

    (Note: You may also want to run rustup update nightly to ensure it is fully up to date).

  3. Install the package:

    pip install tsfx
    

    pip will now use your nightly Rust compiler to build the package for your target.

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.3.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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (31.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (33.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tsfx-0.3.3-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.3-cp314-cp314t-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-cp314-cp314-win_arm64.whl (21.6 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

tsfx-0.3.3-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.3-cp314-cp314-musllinux_1_2_i686.whl (31.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (24.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

tsfx-0.3.3-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.3-cp313-cp313t-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-cp313-cp313-win_arm64.whl (21.6 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

tsfx-0.3.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (24.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

tsfx-0.3.3-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.3-cp312-cp312-musllinux_1_2_i686.whl (31.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (24.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

tsfx-0.3.3-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.3-cp311-cp311-musllinux_1_2_i686.whl (31.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (24.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

tsfx-0.3.3-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.3-cp310-cp310-musllinux_1_2_i686.whl (31.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-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.3-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.3-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.3-cp39-cp39-musllinux_1_2_i686.whl (31.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

tsfx-0.3.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: tsfx-0.3.3.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.3.tar.gz
Algorithm Hash digest
SHA256 0f70c18710059ab8f31b90a18445b47b344c6abf725ae9cadc39b45f3277145b
MD5 e6440e9fc9351b272d781e6c0021dac6
BLAKE2b-256 13da2282879d1b3c7cb17e6b9450de0442f468290b55e1c429b2c807062ace26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48a23c944a67d487532258f86c609a095acbc25f4ee4bab1948f32ba1d60d263
MD5 25f68973d9da90384e6b73c93dbc0fa8
BLAKE2b-256 508cba8bc8b6e3cdb70bfdcc7cdf8b76b42a522c2a572b2ac61199aee4a1171f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59c59bbf1a3629148f2c20a35c4631d7b658c14b38e3ae1379dc9b77f61ba4a6
MD5 714d03005c1c2201b48f37d891dcde70
BLAKE2b-256 c5c72248db6ac1706d81403afd275452402e5c5a2000c7f048442a2653624350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ed1b90ad7b752626aecd33ea1135059958c1b133f0b41b6ec5803e3cc3031e4
MD5 3546bf288949199083a4b16fc2ec5414
BLAKE2b-256 aae8f86bfd7c0b8950b60f21f45fef34e494239411e425587940a205c813db0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9daf734e64b572d754168de1ae183ba5fd4900014e88f67e27befe7ee3c37b02
MD5 ffb2c2253fdc9f7ce33655cc4007715f
BLAKE2b-256 bbacf745ef2890824b82394888381e02c2a39d927420ababa2fdd61658acc746

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bafdbbdc40a4640a7bbd5c0eca8e251aba41e3caa970c81ee987582a63c9398b
MD5 886e623c3b511aca82d8c5c61753b18c
BLAKE2b-256 e72c7bd1773330fae7a21f0953e704eca72752537fac29ab8f956f23fea89d30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cafa05b27458651787c4c133961363dd8b14796d1f09abf254132567574a0c76
MD5 cd361df935b10d02ba6914e8dbcf37c2
BLAKE2b-256 19d726a67f088849cced6d8ba14c48b6df0c6e506efbf8d20eb2e15a7b1c5db6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9eadad9057c5f7181f3aa798fe3980848fb9e9f2a70da67e78c3f458388d6dc5
MD5 68c1fcfba61c5fb35daddb707fbfe710
BLAKE2b-256 fde3bd9a75d97c6b513bd70e33fc50b00ef011b746b65276bf2046c3a57d534f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c42bc47e581f7b68d8c823483adaa53dbaeca5703e43801c1f9db978edb4cb6
MD5 26c502496b10bf0e45c336a53e6c5af3
BLAKE2b-256 4c8f3aef294caa53afac663015854ffd7d198a48d7e83dbb7ec05b8c021f13c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c7f3664847178ea498ccbc2316c921389a04697e6954ccec02fa263474e01b5
MD5 ccad1a08fceaa760e09352ba5eb98299
BLAKE2b-256 a71b543c3aad91b4316d9d99bfdb85e2410e4e773cc314be7cdc85991670a79a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf4e6614b4ccc5618b7a5eb4cc0533d7c3e933e456a01fd2d37c76d01e5ce2fd
MD5 0bd1eba87abe850b8dfce56dd13b1e34
BLAKE2b-256 4f1e69e36a8a7547978cfa15903dc551dc34414b8e6babfa6885cf3bf2a77b60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8a070febf0992c8e04f19a1003c81f12dc4080af3e297d78dfc049aaad8028c9
MD5 304decc10ffc98ed22d50aaa2c328d79
BLAKE2b-256 7d1a8ef62deb5ab9d97380e88bbda5b78f958c66f5b6d06fe49f9f9992ad7a52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ffc694a752f3af37035d18ae067bc5465ac41b0447cefbd165445b229abe568b
MD5 56fb722c0f86ffe2078d853cf1d975de
BLAKE2b-256 92ecbd42cb1d228fb44af55a9a2b4faa07d4188c737d750361d29e07fca48a70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8bb581a44fe15556ddfb644d7d3a550eb07fcc7a99887c8e71f436d2d2896589
MD5 da91d3ecf30e55e26bcd63982fb4851a
BLAKE2b-256 0a629883177497457cd493533d4942fe2f0f89f111a4bb5b8f1a00a1bf8f55c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 485c6d9f68eff7c66ffd2a2699ec603a541be1e42deb0bd9d794723552d7c180
MD5 9bc0971062fbabf1ea9fd078622462ef
BLAKE2b-256 bf4426ad38089911e6ccc7fe08480308e29e2b54ca50a9596139718281ca655a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 110ef44fd73310ff964b032f75da6d31f535ca70c5cec0b84a19336ebd70bb61
MD5 7215b7a57f142de5c2a11abb0f7e3f1e
BLAKE2b-256 84821feabc187371c1307950a0bad5a4d99c2f597bcec14d7f5e8157973116c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d3a7cb5cdab5be00f4e949ceb1390e56b03fb685424e669a4e48d63c78627f7
MD5 45e151f9e61d9861422bb9dd9c8b8de4
BLAKE2b-256 4f6fe83db44cfbf433e896c964cb467a941c192ee2cfe9ea0d0d5c912f00ab93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3aae46ac436038de5dc41c1d6b9d60de9b7a6a91d48b1e062ee911839662c6b
MD5 26623e61765d01ade14547b3d80e4109
BLAKE2b-256 de32f50c886e7b98c3d910dc8f9f663b808cc6f078b2a52a986f1d3f28f74047

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2a9054d32e8fa43e022d56c9829db91e06d37764c15142a5922be54404c8450
MD5 29304e82ebb8b98ecab424532549010b
BLAKE2b-256 e935c18fc09284b636ee2ef3fb554fd62cd1013e80ad0ca2168a0e8a17758ec6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10a1e8e3aaef3d1a399f14c3a613cf579d5158434165fcf43110a9b1608f7618
MD5 fa6f9900573410553bf92176e894f567
BLAKE2b-256 67892ae4cb9f47215cf9879ddaac055cbec95db5042008bf39919edf9dc055e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac155814767a1a2c2e654a64a757335f8f9228b442424dc5db0401ae8a6e046c
MD5 a3cdf8fbe516e54bcd413ec288563106
BLAKE2b-256 a975e868726a84f3286c1f10bb8f3b0d9f4cb2f70bf35aa3e5ee733ab4fd31d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55c850e644c0ec2e63cab604d5e88350ffbfa67fac19e4b817a9fc9bd2a5ec3b
MD5 0cff76f5d929f22dc5b9724939301db3
BLAKE2b-256 e2dae8770da22ed22f7dcfc5fc6a86cb17b44504ba71e31f01c770e7c730f8f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70eb088c2c3d1e7c8c17dbddd770fac7c1e3ceb973904914e7b59816f11a4acd
MD5 26869f604ba1b239e80dd3fe91777e80
BLAKE2b-256 155c767ce819623de758d34dc4a875d38f06e83976c04cc78345fd543ad0d6e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44d5438cb5e18af55f1dce969f512e51092784d8d52a41261184ac42f8978e0f
MD5 8acb93f731550dc08d3d0d55d37c979d
BLAKE2b-256 6603bc03d2f2127e4297342fb1a3e1b144060e5a4fbf0070dfd6848622d40cda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d85c41b3c100b05cd4c93d75c8d2b5bc7908275e6d4b7d74809b62fdb80b822d
MD5 7358be26ba33cfff86884c4901da59c2
BLAKE2b-256 3557161cd260766fc28358a0b213170cd2ea5dbad8075ba92a8f1101c4c17f9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4708c4d0563853d5d847fd911854d1472a570d3b7f43f5a706e1891f4c4d1216
MD5 aaf17fbd8f014b370ddaf8b0adb4da0e
BLAKE2b-256 02076f5c367673f67e2dd3ed8b586e6db4505cab5538171e4c48f9cd12a34915

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 34d4e602f1b08c7fa80242d63344a797bf3cca5e05cf9452d939f207bf2f1cc8
MD5 61372b724f8dbb9f78cc83497962ae0a
BLAKE2b-256 2bbbcfd2f0e535ed4ee9501126b434be858ebd8140a2a07c95b640f4c7470abe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc4028b7f093831941589c93244ab6ebe6a46e748c371b19c597a230ef9cb7fd
MD5 26db09e78b657d3a8bc57fa0244d6438
BLAKE2b-256 f1a2cf9281de9945ba784cb373fd0468a57b4f70f1bc57c98b89397311ceb286

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f147afaf91eec319ae212c8c1c058753f5d7dce7a72d9edf9c6fefcc6bf5ab71
MD5 d3868155bee8c353a62f21cda10ec4e0
BLAKE2b-256 ffcba0c803cb1048cc77f007bf790aa11e0a3e8c4b92f566c2ed34b6992598bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1be461246199bcb8a0829ebf77e0b8ba5562dbe9b9eb73b3a3b40c0529c5bea6
MD5 3ac8eaf16dafdf8e7240fc32c3b67bcc
BLAKE2b-256 99fada2f6c8814a904e2946aa7c70fe827b8e32d470c9e5890b631e226b2fbe4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10e68ba87bfd38ec0b145e079113e07631aeec31e367b202554a3114cb2dc53c
MD5 84f1e417e11e7e264903a1bd00b030d9
BLAKE2b-256 b72eb27b5cb56c68b402c021fadf6d14357dc7e38d0c683d99636567dd28ac07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bb75f06a02f3e5a8e93517076c58c9db7f09d7f2d19a6d6cc87786ce35b0765
MD5 d380a70b291f939d68f27fa89e48a205
BLAKE2b-256 ae4873983e7d1be689cc7caf3b5cd14be5a4723075fa9461953c565a9344294b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a54281dfea80faf8a3c90fe6d341b0806d17ad5a71556e8ae82b9bdd8802e197
MD5 01b2d9ea607b07026911f80f2d50cd0a
BLAKE2b-256 0615976fa20cc2d7e9c6b613d9da4651e70d5d5a6de2217c3059f71e052ef520

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11c56fc9dad63d1cfc86550a6704724e9c3322e1c046fc9aec97e75124deacb5
MD5 04f6e1ac0c33de903064bccce8c4b7c5
BLAKE2b-256 ff702fd1d2382e1a81062550eba211279b8e2e0442c6eb26b15b8b77f5df1ebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1ec8bfb78ecf8d483b17305dfe07d4ebb4850270b96429682aff02d0e8af67e
MD5 90351f58e9cd22b19bfe67cd662a53fb
BLAKE2b-256 5bdfae393e5fdf3d9a9ba3d279d9f2518e257749f52bcc38f3f5b797baa52e8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f33a827593d193b01833e9173e550d33f19a4ef4cf25d627712d19afd74ee8f
MD5 a978257ead5dd8b072b5a396c642bdc4
BLAKE2b-256 dfce0d25d3f774159de19b12f5a339c0f459687b4da1ea46f2b6e02564ffe034

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4e1c5f6efc3ced251989c5f0c2f31806f753861c7860ee2fc98a74296758b99d
MD5 52ec31d0b26fddb58d0d4ff7e7877a6b
BLAKE2b-256 6ec001149d1d7e195ed18ec66a41bc10b24bce177ed675da532fba5ddacbdea5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e74cf4aaa87064eb3238b549da238c972136d46357911e700b0c325c82dc335b
MD5 9e4a44b99e3f2f9c40deb07314c46bed
BLAKE2b-256 c209eda7181abc0900c6335107f85c14289b39accc509128ac982b75fb36434b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f113ac7b8b7a29e054ba810074ed4da34ad757c491eaf4ac9acc09f8fd844786
MD5 9cbcbdfeb8859ea6a4d3bfbd859babe7
BLAKE2b-256 e178084d465272dc94bb01bb0d46f19c904f2f5c70f232116d1f9ff93d8feac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cbf77a1ba8f058854b64a3ef2b1ad73d21e7734909b0f0185aa0efe2c50e1b2
MD5 32b1877d1b7b030f4eff584789e7e527
BLAKE2b-256 1c3724ff014d4e3b7ec81f5c86280133ac29a314999c4f671f37a036532efd3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7437346e3227e9b4043dbcca5e03b90b792574f4bf314275c31a9139640edd7a
MD5 08458b1389ea8f64e08fc2f34f0e7b12
BLAKE2b-256 27d1b1bf5bcdfb282f09db259260eafd772c886dfb8277fd2d9afdff8545f4a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92e1f0a010637f0c20b07526c12cf4b18b915b084d34ae99659068e04cbe45c4
MD5 6dda5695f9cb8d5761617cda2d10c704
BLAKE2b-256 c33e58cff4ed0915919a512a0220713e549446d37a00abb364b679963d8bace4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b1e3f9eeb978de7e7832d632434554150e3dd372ea6778e6ee3a8a118de8fd7
MD5 5a0e1c6ba3fdad580b4d00c7a09a8a18
BLAKE2b-256 3f6a82343c011340754a6af42bf3f51b7f5cce433c8d7a15ecab86e1fa8a4d01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b415a163b6092acb58343c2e5c21216dc1948767b15253480aa0dafbf1abdfa3
MD5 578d481c69a012515acec3d22f1e683d
BLAKE2b-256 78de21bf165f6b17c2b0c73193690f15adf9bae9f8f7abad7a3cc19b8d189410

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6160ce8aef0d4b7f6d2e3dfd02af297db376471245266afa3eb7fd5cd065ca6b
MD5 c40d5c6abe56e4c671fe547a2bb48d58
BLAKE2b-256 baaaaeabc3c2f71095558cf4d85107c466aec065c04c9b357618b304b47f3714

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40d609b16f119595feb4c34309b224c4de8116337f3edf42c384f1e6face9b8f
MD5 12a4273490a82f365a00dccea609effb
BLAKE2b-256 cd423644103ebfc4b9c44295ca98ace18ee68431535597871a77c761c8c4b618

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea0b74f2e4a30f261d0c273354def62835061868ffc2429014724485b79d65d4
MD5 347f262503155b5ced6c5ccdcee3299b
BLAKE2b-256 9448adddba9e58273ca6485aecfb5afc0e3c08b0c2f7887b7814444888b5bee2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89392d8fb8ac73bc5724498547f81e9eeb56fb105ad81633e18188736788776b
MD5 4104324843e602f77c8b94566c55e816
BLAKE2b-256 2fea1fe5a35b8469310ca503193253307b4ba36b189dea872fd323bc684ca24a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc445f479d1b0d4dc9edb51387037ab90a0cec55bbd6f58a359caba769e95281
MD5 036342cb622b49471aecf9280a497c3a
BLAKE2b-256 7dd55184ef0abf7d826770f4c03cae7c20bc4805310b895400b2e2f9b54258b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2b14b2a728d81c80f555b7a526a77cc113ee6e92376f19d981cb2fb687f4b1e
MD5 4faf3aeb890dea0b140235a3712dcdfd
BLAKE2b-256 613c27d0f6111b8aec1c0f0beb689fab2b792cc54e9f80ab2c96493fa2bc6a1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4228f0c63951dc1cd532bd31dba37cd72e3a2c076b4d1c6cc15a5d7c75b369db
MD5 024d4f1fa249112d71c6ff892c957848
BLAKE2b-256 cb7d50a1effde5db538488dcedd8cfd566755d017151df9983a2b07c03b27847

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6ec1c218d1d2bf35e4215de0ab682da46c620541e14d3b937dce7b42c806eff
MD5 90a95d9ee7b27150e4f42b759e786bbd
BLAKE2b-256 2f3a2a8a4801049847ba6e62f0e6dcc47294c775268682bec6dca8ffc48c61ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94bce5c0ee654cc22351899f1f4c0cabdc2248eb745c886a02ba5462e7e17bb7
MD5 64fe7d961693c86377964d6a7ba518b2
BLAKE2b-256 7d1b3aefc365851be822744bc8867e1de0d5a7e84a123021602fc0a8b401eeb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c338f56924038147fbe253821b420422aed0c977550eae25c1c28473f309a58e
MD5 82eb9b0c6777cd591bcf782c4f292139
BLAKE2b-256 46ca9979c5f4cd2731fb8b0aaa62e82acdfb2f5689fe8db3a145ffe62e2bdb5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5aa97195a3cd53ca0aaeb96e6923fd442b5655d9e7e3285cd292b6b3d92fdda3
MD5 f6743fe3c0a4c2d542723b6b21ed8e0f
BLAKE2b-256 1b4e939db0034618e68f7ade7d622de4a648a6af03c6693221bc25273a78dcf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b707d7ded0d86c3fd780888d4ddbf0901d0386b1fbdf1f5ece3fad3089d29261
MD5 62f3a4def61d6574cf6d4d262fd1054d
BLAKE2b-256 3496ac196be539c4c8a1c19b5cc1ed1488001dba7d015fad684e6d31d6493022

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80ab9ea44fd9dc20ba2d7027855546cfda19f3971997b3cce41edbabf081d937
MD5 be43b23d3fd153bcc2e81c16c8351dcf
BLAKE2b-256 ae080c7c17a2fd35c87ffe5ed8006ab8d9993a4297dd51aee4c534cadca72fbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90d1ac919dfc18b63f9f16359f0dd20d44dc4802cf8dc11055bf473797d4f1f9
MD5 99027d74280c72faa2d0b6b95e139f0f
BLAKE2b-256 a1f69e5bfa3f28806e75043ec433be672cc0219f77e7970158ffec3e45f1604a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b87eecd50d027a0dbe743c666eb26ed5839fbe6a7c8ad4a474c0698a6ac6ae94
MD5 555e3fb02f58ce655c5f00af4165b434
BLAKE2b-256 2118702e2bbf56725f9ceba9db4e17985ab3b96cc1503eeeb06ac659a376b6c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87fe61e2ac86cb587d6f4b2ca021cabd433bb636656834a586decb94863029ba
MD5 468aac6b5b74816adb48ab17d0590c18
BLAKE2b-256 281ef272ca48e7eab42930eacca4d8b05f53740417a01e523fe732354ced4d44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f7e1c5b13ad822bc16707f344a85f1f3b2ede31196cc52dbe3b3394de30c518
MD5 338988983f8630e5f0c49cbbeaf6f9cb
BLAKE2b-256 5a4fb0c21f52cc0753c0cdf650da3d978fef17979e01b1c762a7e937d3697dd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f807958be45e3bd07f8001c164dd2e4b28310f926dc7da18133abc18d315d868
MD5 ed5a7ab10c9cd0fb770e5c48568ad1d8
BLAKE2b-256 01f78907ce53ace1dce5c57bc83ab861829555f2a707eaa1856a493ec249029c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b733b67badbc50bbcb7654ef899f3c2ce491239fafdb4bc9bc85dcd3da18d681
MD5 b929895d1f76bde2fe12925a5b64c06c
BLAKE2b-256 d2ef8caba2ffd84177ce5b712db4ea6620aeaa979e0a6c6e926dfd8db8e3c1b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ddba212e2137829baf6b0107486363c7785c56246e34a193fbf279f51049d1c
MD5 65b3a50cda55ea38a2bb0edaaab82b68
BLAKE2b-256 a61a13dfe470a708cc575ba8131e7d28736653d07b6da6cc4037d80a209a070a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebba3102eeab0586c3370674b521a26be198f638b460e62b49bd1a309e5ee1bf
MD5 7303a7a5b11512f7a6182d9ded3d110f
BLAKE2b-256 26d858adda8e92c51e3c7dd219feaefce6a0351578565e0f388830ce698ba971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4666de85fb3762e4f48f796957881c9ac1cde2a55ecb553fffb9840ad5eafe1
MD5 275bfa7f7e0b556b264e03ef8f61d330
BLAKE2b-256 823aa3038476f29f347660a036837a438e91a521cdf3a22c519f0482cb2dc71c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b9feed9bf1e6507a3b2a7ec67510c5fda5de5ab2eb967caaa9e56134a305f96
MD5 a637b222d0d7e613d9308ebd65ab86eb
BLAKE2b-256 13a22f2a605b985d67fa588fb2496942d8f260236cdfaa95f20533e2d7a6eb98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.3.3-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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36f3818080f8ba5930fa77e3d3fb9b332023bf2e1532e76b7c743e08552f7ba6
MD5 5f9146bc78de1d9410a52c85b91a86d7
BLAKE2b-256 6682776e433de23909dcb99c62d433a156806202126336e6ccb171992918d44a

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