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 (
    DynamicGroupBySettings,
    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_col="id",
    feature_setting=FeatureSetting.Efficient,
    value_cols=["val", "value"],
)
gdf = extract_features(df, settings)
gdf = gdf.sort(by="id")
print(gdf)

which produces the following output:

shape: (3, 316)
┌─────┬────────┬─────────────┬───────────┬───┬─────────────┬─────────────┬────────────┬────────────┐
│ id   length  val__sum_va  val__mean    value__numb  value__numb  value__num  value__num │
│ ---  ---     lues         ---           er_peaks__n  er_peaks__n  ber_peaks_  ber_peaks_ │
│ str  u32     ---          f32           _3           _5           _n_10       _n_50      │
│              f32                        ---          ---          ---         ---        │
│                                         f32          f32          f32         f32        │
╞═════╪════════╪═════════════╪═══════════╪═══╪═════════════╪═════════════╪════════════╪════════════╡
│ 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_col="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.2.0.tar.gz (10.1 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.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (23.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (22.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (23.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (22.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (23.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (22.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

tsfx-0.2.0-cp314-cp314-win32.whl (17.2 MB view details)

Uploaded CPython 3.14Windows x86

tsfx-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

tsfx-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (23.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

tsfx-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (22.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

tsfx-0.2.0-cp313-cp313-win_amd64.whl (19.2 MB view details)

Uploaded CPython 3.13Windows x86-64

tsfx-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tsfx-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (23.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

tsfx-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (22.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tsfx-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tsfx-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tsfx-0.2.0-cp312-cp312-win_amd64.whl (19.2 MB view details)

Uploaded CPython 3.12Windows x86-64

tsfx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tsfx-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (23.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

tsfx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (22.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tsfx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tsfx-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tsfx-0.2.0-cp311-cp311-win_amd64.whl (19.3 MB view details)

Uploaded CPython 3.11Windows x86-64

tsfx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tsfx-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (23.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

tsfx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (22.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tsfx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tsfx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tsfx-0.2.0-cp310-cp310-win_amd64.whl (19.3 MB view details)

Uploaded CPython 3.10Windows x86-64

tsfx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tsfx-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (23.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

tsfx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (22.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tsfx-0.2.0-cp39-cp39-win_amd64.whl (19.3 MB view details)

Uploaded CPython 3.9Windows x86-64

tsfx-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (22.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tsfx-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (23.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

tsfx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (22.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

tsfx-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (22.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

File details

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

File metadata

  • Download URL: tsfx-0.2.0.tar.gz
  • Upload date:
  • Size: 10.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for tsfx-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d639254cd59a3165c72f93dcf42678fa85ee16911f924ff10269e516ade6fcaf
MD5 6d3f540b77e47e15aa83f7b861d7e7eb
BLAKE2b-256 04d31aa439c35419bf560dd9332f897fe39d1cd59f7036e9c9782ec45398c583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f131f14f28aac1ed9d2938063665da64c0718a3942c6dae8f5950e48eac30249
MD5 23dd80a1f14999f310e4d868f97879fc
BLAKE2b-256 a82206e9f4f4999b4c2088be062b356be3e5222bdb29b96d9638f5f18bd25930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ebed0d49caad025ee25630abd201821553727585ae03f2f1a9742b9ca10ed85
MD5 864c3b117667756fc2f752fbefc45685
BLAKE2b-256 414a111a8d5c782272c00aaaee7127f95bfc4df997a703a1f0eb05a2d0a9877b

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3fa4a68452d6ba4ef1346cc2d23bfeffcfccca14d88ad01d81299680eb4b3498
MD5 034cd3c338f2e993a8a8d402e666bdc9
BLAKE2b-256 16d26d5add4602e2d1a77848bb0e2c0d57c3eaab52d84b2d239ed6091a008cdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6c04dee168daca9e2803ab287a65801a4c827377229de670f6c1cfaa7cc110c
MD5 2d129e174020ad77ea9f205cec115153
BLAKE2b-256 738b7697ce68d4692e2429345e75c4824edd1a423cca9a22ad46646dfef5eb3c

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72612c7dd587aa1ec1f9a8cff5664988ec1eb504d45e93dd26141ec1ded39cf8
MD5 837e5b9956447fda377da4fc1204f241
BLAKE2b-256 360fa5663f2919836a6d2df27cae915faa2c3ecc0db2e5b845b8e83e63cd4bd9

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8b4f2664635c6bf5b892d1c9d9b021026eb7d9b40a3aba0f42c5bb52bafa2ae
MD5 3b16d031afcd762c52fa483009d177d3
BLAKE2b-256 3e151f3708a3e22002e1822b6b7952a5f0f042626e179b6d867345a199416e5c

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 012903c11d22c0fb9af8812d6f41083ef3b47a545515f67b9f2621168821ce93
MD5 ad10d3b2112bb4afea3aede45ffd1e91
BLAKE2b-256 f34bbf701b7e12dc06891c0ea17e3d0a72a191e21f28fb67b34b5625ddceb67c

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8b8b1876bfa634e8de310fd02c579deed3f12afa74a2af9dd1f6e980b5a7d3b
MD5 0de01729cfe4b916ef163e4af04e1b33
BLAKE2b-256 f99c54f130d8d7ff15db25738e0d00b20d4b1f56bd2ab02ce55e7ac71a4e36cb

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7f008bba0aefca1a24f764306b372ece26f53a6a5ecb02cba3b0ec1640b80f4
MD5 8e7b840d5bdff3f0bbefef5d5383c79e
BLAKE2b-256 46139057f3f87879f4aa06234f3bc32a9690dc69aad1026f34eb6b12005f59c3

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e04a50c8fbe1d78334679f966b5ca4f18a830b5f33e69e24ced533227449e83b
MD5 c0693fc80cc8adfb94dafaa86e8d428a
BLAKE2b-256 14bdc2ed270cc330af97053105e50512fd6e828597eee09c39840812016b4bb0

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ccb964c4ff9ef83247f909c96f51afa46d246e46f490099664cb51736826dcc
MD5 cc8cbd5b7dafc78ec0e5ccb231368391
BLAKE2b-256 28d89c0892b3bdcd6b42614cb9e823f2a444b9f21818ac8edf8421715ad96f27

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 941c15f862d736fba27659c5a49f11f7c4ceb12e139eec9e88e086fbe57bd95c
MD5 caed581fc724773f75f6d85cb031178a
BLAKE2b-256 409ef52c184a96398cb9191ee06921003cf5021f5e6a593792fa52f4b124d7b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for tsfx-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b120c86e158a72e40c7ccaaad1dd9c9eaa67661d84530344c5a5b8fa0f7cd1cb
MD5 5464d2bd216aee89c490e1e1ff154d56
BLAKE2b-256 abc76a8458c45b2e676eb6cb8dd81c59282e9411dd99e741be32ae0c6b3178e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a04b3decba14316d93fe81665674204e7065f5dc0884a6a36330fc61e616ba21
MD5 3ab2a8c7abdb5ad23fef7cd28f64b56f
BLAKE2b-256 d12e91f44e421575d82930241d2465a8686ee646f691857093924c228144f109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a066f036f7c8994fb44ef2df0fb165b2ada07edf1a07662a91d9bf50219468ac
MD5 3bfc3de3f320d3fcac2c12d238df2d6f
BLAKE2b-256 3023f7efd0ff60f6e3ed3f88c36cad9357922b3cfc9a63475a8d52e2e6e1aa83

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f087845f49c8bad08e209b965ac4c7c42512cae0fb7593986b7bb911a4f224c
MD5 e58922d4afe6b858313447aeb643bd14
BLAKE2b-256 9e9c3c941cbab4d445464cc5529806edeb7a3104796cbd5c44037c2d21b1a9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c349505047b1f9d5d48514d6500ca807c4244b974755b0cb03eceff950331c30
MD5 b30025db38692f4c9e8d3db35dece62b
BLAKE2b-256 6f0977f13f13819cbc46ad304c03139f47ad7064a6f57609f48c2460bd1b5fe1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 19.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for tsfx-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1107c32c8b2535016f7626f063bebf1875cfe68f4aa9de9a1365b47059f40ed6
MD5 28e77bf741763cd1c1089e17aa2bfee6
BLAKE2b-256 4c7355922d5e13bb5ea19ae6e2f5763ebbb2c6feb5b3778446752ab59e2589a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbaea60cf47bf57c056af89ce305081fe2f9ad9ae0bbaaee06365832226bcd99
MD5 3294dd74ebe640fa9f122f730cf58405
BLAKE2b-256 ce4b3212c25b76dffae3d575438507b5b7519d96c390ce741ea1ad5b588dc2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10f55e4d589634b442df07309325b206f0a8b0e898c624c8b0584f662b199780
MD5 817ca96449d55622dac1092853015757
BLAKE2b-256 74a796a6f700196412f1bf6ddd2d3ca0b8483ef5293eb9176493a6a52b5d9a36

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d6fe8fcf94222c50fc132713d3f93336d2ec65ba6234e7e69289a12e16dc920
MD5 63b7d7a026bc0c37667f7ef22b64b210
BLAKE2b-256 04e4fa0ccfe23b58e9f05889738173ca3061f3540e3022984c669667a61eb35d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34c34aec5d39b82fd73d387f2593370af986ee24c2be99c6610a346f4a2b892e
MD5 5e07f0d984ce563ab68c2356eacadf99
BLAKE2b-256 4411bd00e13fec68e961835c76b629a314eb7d6a78f8e1bce5620e7d1a6584c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cadff0b51b02d710196aa190128dcf06524e6f968d1dc8883971e7067393347
MD5 4f3330c8f6f376634d844288529b302f
BLAKE2b-256 c54509e7fbb1d940161bcb096f96900d421c6bf7845f73cea2b488e5a446bc35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39b3ae6e0ae590fe6b1ea3322bfb9ec99fd5db252ee7777d4c8c2ff1aeff3a9d
MD5 f9af9f969ad68e30a0cea88998be1694
BLAKE2b-256 32b9da3731b71fca085e2b2534b7df648a3fa39286109acea81ffc76bf7e90d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 19.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for tsfx-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f86b706ba5459251038d77f98f935a50cf4eef733160d1b2821600aad1e0f7bc
MD5 c6212ccdf50a9b04b6c0f426603818b0
BLAKE2b-256 34f56f0d748e1cb16409af5306b9f3f811e9c35d66c44bbacad8819c45472f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8517a34f2cbf958304e56dff75ae50e281bccba865f58e3f8040f41fbc6f552
MD5 5e9eb5f4a91e4983a4a8b92c5c034c26
BLAKE2b-256 5d343a403a98d0976d0b45713e41f8e3eac6ae8d5d9b9c57ce41a502d2a2ae6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5505b53eed7ba066ccbd95b59ef6b449d896db22ee45c6038d08483049d02705
MD5 d3f3162f9f1fc077dd383529e292e6a5
BLAKE2b-256 c129d8ba71d45381d49fa40ffe5b2d7b6b3925f86949c8312c585d97dfe35c94

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f90bc821ff2812c9b4d4bee8dfcd5d063c3849184dfbaa6e79efe211476a712
MD5 b6247325981e64054b3dd73c842a6b40
BLAKE2b-256 3e8b33c9c4111545fac35e9ffff89dddfe4feadf980a2b6bc6941ce06c25dfa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eecc45a6f80e77227c6ddf646de210a23aed24f965d05942e97608ab17d5f70a
MD5 d2ecb048ea68f191556f2476c5a934f6
BLAKE2b-256 36bc33ff5b8dbb3e5ff22b23a6284d36d3ea3462f2118d0162df2bbf1c12b549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 003c59fe1ea63935b2c261f88c131708527409b5ebee4e7dbca6298260fa90f5
MD5 7aaff853630f14b50ca572713263c2da
BLAKE2b-256 401d14134c8d05b1c32ff54cfaa7aa518302016333e323e87c76551b64089dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec2124b1cab861eea4ea8974516a56d8600018d42b0b222f359a37b57105581d
MD5 f7adfb0e9ec33214ecb5855e4d75912f
BLAKE2b-256 7d3a25c0c12f950187b8c9dcd35cf926056c81baca0860228cf007627ec09086

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 19.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for tsfx-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f0b21883d79541193a2bea06e5475234b5c1b18fc9738c2485b7c88ca964429b
MD5 0151715195a19903ff1316278448afaf
BLAKE2b-256 e696cf2ac9857acb426beb25b3857c2e74b6d21f27091ab219bc9870d3e4caec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b441cbd7f4a3d363e114d9a262ad16fde78c0bcc4b106b5d06f73ac0a01f3a9
MD5 6621a260e54dc0fb94fbb0f7e665dfea
BLAKE2b-256 0d23e6dd4d718c51b883f25c0538ef77a8b4945fb2fac5d52bb6a97cc0d4eec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 434b7a3519e4a185edf813d237d68f51cf164253b91d2a84349f64f050f855d4
MD5 9431d81f6b88cf8d9ecf9b4dd45e9e66
BLAKE2b-256 8d66e35c5a73094d1e5bdad726ecd9fda1cf5798437ff5cc4522f661e35c347b

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 164a86f7ade4465d66ffaea94c77d7e1c8cd8f7484fa36aafe960cc9e7273832
MD5 7351bb4f7f0b86179f4f8e7fa8366bc5
BLAKE2b-256 b7d29d63d30354950de4db6f62a2171ed014d9ec956b5ce3c82d068e3c2c2e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af12b4a5c1bc845670a4984d989f8b38ff5322626a7cf62a942b27d2d48391bb
MD5 4ade4d68a93621a388c1aab6689b7f43
BLAKE2b-256 2dcd5444a988711935113ff17a8501299784d2b016eecdf6af0871362e5e65b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ada474308b50a2aff96d16d81c1e1b6424a167c54cc706fdbb9325f347070d2
MD5 5c357215e50b3892d8610f5803020141
BLAKE2b-256 7242b478f75d740c300722e1ee798bbac54447015a05bc9dfe1e313ae3cb381a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 551baed6e7c7a398171df107be998fd8b3fb64a9d0b85e6efe2fb6fac4acca60
MD5 c75fc0a45e3533272a6f3769eff457f7
BLAKE2b-256 5d879e57a4819158249ffcf99f43acedab103b583ee7e14869bcf564d5f3b38e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tsfx-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 19.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for tsfx-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 42ded33cc64e0dde88c8a27a34cdb70e7780cb4ec9bfbc38c80002b958298a76
MD5 2fadb8a1788f121020e7b0fde44f2bae
BLAKE2b-256 75de0e4ecfb0e9b1419117706f3d6f674e7809db1a4e8c464104c518cd00952d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5b9c0058b99533e23237b83c6fdf0b15fd04e04b498d427972c75d6a9a5a0c7
MD5 bb04a6c1e4effa8e6b5984655971bd90
BLAKE2b-256 1aa0b2abbb3121316bfea3df52a439ad47731b28adddc6753983332c70f4c392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8734848c4102c79d53c22e166eed5377f598d49b1bdc70151e0506735dfcd15c
MD5 51300505ef671150b10d3321f95474bb
BLAKE2b-256 dc145c23e90957ebbb0b9c02c0b54bc847ac1e8c8074574fce493cc9a52f135d

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 81c072fa0aeb69c14cb74e8ad45698347f1c4b504cfc64ce82bb5a3ed23ffef3
MD5 ac038600d3fcdbc323481206e8917f68
BLAKE2b-256 8872fe6f619d7a5b708ee124e710847dd242289f42d19fd47ae9f4fae3d4a5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6b9c98cb7447dd8f53ac310e2e2589b8dcb774ed0fdac13a440074e876fc70b
MD5 1da94d6f4854754aefd3112b1fa3d01a
BLAKE2b-256 d243030a73f028085b49ec18779407c6f505ecb6888ed86b9d6c0844cdf5cb83

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tsfx-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 19.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for tsfx-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cbcefd42dd0a9004df2618490830200568a1287c75b1c40c4b1796bb49e3dac5
MD5 581617ccd77f663f4078fe96ba0bd8a1
BLAKE2b-256 0de7616491b6e03f72278b66176574c82523dc7babae240e5f4ffdcc1153975f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cd6e72c9eac494f0921f3c1b99f737a89007fbd75207d81f79f770adce2c114
MD5 6021cb15317082819617d4d34678e3b6
BLAKE2b-256 b2e5ab42fe23c9b5690fdc2626c0638a22284d089b37564f5c278b7d67f2ebec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d11c4ed89b483b6e733d542bb47508c66148871bf5b00d2305d058d9fec8eaeb
MD5 022177ee06b998d3c5c3a2c776fd1b4a
BLAKE2b-256 bb600da7b3e40b86f2d123ec276a8e6b87d5e1d1b06565a538b8c5bbe6d2b06c

See more details on using hashes here.

File details

Details for the file tsfx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tsfx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa12a3f923b1572696d5818cb404c44742acee6e414a59f66948654b366812f2
MD5 ed8fc1d6677ecfbf4fe44b730d64b8a5
BLAKE2b-256 9d8b983ac457b58b8542a65cd304b1a9038fd784e20b94ba916e85754e47aaf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tsfx-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2243d9dd2ab17bf14edab17d696b7515ffa66ad9c579b35b4ed992154aea076f
MD5 35dbb7c3cd2c279be7d59b400a853286
BLAKE2b-256 b009447505bb29d8f6c184e092f61d7390ad509b4fe3a266534343fb812712e0

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