Skip to main content

A package to simulate autocorrelated time series of signs

Project description

Tradeflow Logo

PyPI Latest Release Python Versions CI Coverage

As stated in the book Trades, Quotes and Prices: Financial Markets Under the Microscope by Bouchaud et al. [1, Chapter 10]:

"The signs of arriving market orders have long-range autocorrelations."

tradeflow is a Python package for fitting and simulating autocorrelated time series of signs.

Features

  • Fit autoregressive (AR) models to time series of signs:
    • Automatic model order selection using the Partial Autocorrelation Function (PACF)
    • Parameter estimation methods: Yule-Walker equations, Maximum Likelihood Estimation, and Burg's method
  • Simulate autocorrelated sign sequences from fitted models
  • Summarize simulations by comparing original and simulated time series:
    • Plot the Autocorrelation Function (ACF) and the Partial Autocorrelation Function (PACF)
    • Compute the proportion of buy signs ($+1$)
    • Compute descriptive statistics on consecutive sign runs (mean, standard deviation, percentiles)
  • Perform statistical tests:
    • Augmented Dickey-Fuller (ADF) test for time series stationarity
    • Breusch-Godfrey test for residual autocorrelation

Usage

Fit an autoregressive model to a time series of signs (e.g., [1, 1, -1, -1, 1, -1, 1, 1, 1, 1, ...]):

from tradeflow import AR

ar_model = AR(signs=signs, max_order=50, order_selection_method='pacf')
ar_model.fit(method="yule_walker", check_stationarity=True, check_residuals_not_autocorrelated=True)

Simulate an autocorrelated time series of signs from the fitted AR model:

ar_model.simulate(size=10_000)
# [1, -1, 1, 1, 1, 1, -1, -1, 1, 1, ...]

Compare the ACF and PACF of the original and simulated time series:

ar_model.simulation_summary(plot_acf=True, plot_pacf=False)
Simulation summary

Installation

tradeflow can be installed with pip:

pip install tradeflow

Documentation

Read the full documentation here.

Background

This package is inspired by the book Trades, Quotes and Prices: Financial Markets Under the Microscope by Bouchaud et al. [1, Chapters 10 and 13].

The book discusses the highly persistent nature of the sequence of binary variables $\epsilon_t$ that describe the direction of market orders. That is, buy orders ($\epsilon_t = +1$) tend to follow other buy orders, and sell orders ($\epsilon_t = -1$) tend to follow other sell orders, often for very long periods.

We assume that the time series of signs $\epsilon_t$ is well modelled by a discrete autoregressive process of order $p > 0$. In this framework, the best predictor of the next market order sign (just before it occurs) is a linear combination of the past signs:

\hat{\epsilon}_t = \sum_{k=1}^{p} \mathbb{K}(k) \epsilon_{t-k}

Here, $\mathbb{K}(k)$ can be inferred from the sign autocorrelation function using the Yule-Walker equations. $p$ determines how many past signs are used ($\forall \ell > p, \mathbb{K}(\ell) \approx 0$).

As a result, the probability that the next sign is $\epsilon_t$ is:

\mathbb{P}_{t-1}(\epsilon_t) = \frac{1 + \epsilon_t \hat{\epsilon}_t}{2}

References

[1] Bouchaud J-P, Bonart J, Donier J, Gould M. Trades, Quotes and Prices: Financial Markets Under the Microscope. Cambridge University Press; 2018.

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

tradeflow-1.2.0.tar.gz (20.7 kB view details)

Uploaded Source

Built Distributions

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

tradeflow-1.2.0-pp311-pypy311_pp73-win_amd64.whl (31.2 kB view details)

Uploaded PyPyWindows x86-64

tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tradeflow-1.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (23.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

tradeflow-1.2.0-pp310-pypy310_pp73-win_amd64.whl (31.2 kB view details)

Uploaded PyPyWindows x86-64

tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tradeflow-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (23.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

tradeflow-1.2.0-pp39-pypy39_pp73-win_amd64.whl (31.2 kB view details)

Uploaded PyPyWindows x86-64

tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tradeflow-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (23.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

tradeflow-1.2.0-pp38-pypy38_pp73-win_amd64.whl (31.2 kB view details)

Uploaded PyPyWindows x86-64

tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tradeflow-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (23.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

tradeflow-1.2.0-cp312-cp312-win_arm64.whl (32.9 kB view details)

Uploaded CPython 3.12Windows ARM64

tradeflow-1.2.0-cp312-cp312-win_amd64.whl (31.2 kB view details)

Uploaded CPython 3.12Windows x86-64

tradeflow-1.2.0-cp312-cp312-win32.whl (31.2 kB view details)

Uploaded CPython 3.12Windows x86

tradeflow-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tradeflow-1.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

tradeflow-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (875.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

tradeflow-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tradeflow-1.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (25.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

tradeflow-1.2.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tradeflow-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl (23.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tradeflow-1.2.0-cp311-cp311-win_arm64.whl (32.9 kB view details)

Uploaded CPython 3.11Windows ARM64

tradeflow-1.2.0-cp311-cp311-win_amd64.whl (31.2 kB view details)

Uploaded CPython 3.11Windows x86-64

tradeflow-1.2.0-cp311-cp311-win32.whl (31.2 kB view details)

Uploaded CPython 3.11Windows x86

tradeflow-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tradeflow-1.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

tradeflow-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (875.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

tradeflow-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tradeflow-1.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (25.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

tradeflow-1.2.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tradeflow-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (23.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tradeflow-1.2.0-cp310-cp310-win_arm64.whl (32.9 kB view details)

Uploaded CPython 3.10Windows ARM64

tradeflow-1.2.0-cp310-cp310-win_amd64.whl (31.2 kB view details)

Uploaded CPython 3.10Windows x86-64

tradeflow-1.2.0-cp310-cp310-win32.whl (31.2 kB view details)

Uploaded CPython 3.10Windows x86

tradeflow-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tradeflow-1.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

tradeflow-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (875.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

tradeflow-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tradeflow-1.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (25.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

tradeflow-1.2.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tradeflow-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (23.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

tradeflow-1.2.0-cp39-cp39-win_arm64.whl (32.9 kB view details)

Uploaded CPython 3.9Windows ARM64

tradeflow-1.2.0-cp39-cp39-win_amd64.whl (31.2 kB view details)

Uploaded CPython 3.9Windows x86-64

tradeflow-1.2.0-cp39-cp39-win32.whl (31.2 kB view details)

Uploaded CPython 3.9Windows x86

tradeflow-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tradeflow-1.2.0-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

tradeflow-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (875.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

tradeflow-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

tradeflow-1.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (25.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

tradeflow-1.2.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tradeflow-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (23.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

tradeflow-1.2.0-cp38-cp38-win_amd64.whl (31.2 kB view details)

Uploaded CPython 3.8Windows x86-64

tradeflow-1.2.0-cp38-cp38-win32.whl (31.2 kB view details)

Uploaded CPython 3.8Windows x86

tradeflow-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

tradeflow-1.2.0-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

tradeflow-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (875.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

tradeflow-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

tradeflow-1.2.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

tradeflow-1.2.0-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl (25.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

tradeflow-1.2.0-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (25.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

tradeflow-1.2.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

tradeflow-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (24.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

tradeflow-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (23.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file tradeflow-1.2.0.tar.gz.

File metadata

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

File hashes

Hashes for tradeflow-1.2.0.tar.gz
Algorithm Hash digest
SHA256 4bfb22afbf6d4621b4a146c925fcf6cbe43ffe24a862b10a260229f1300d5e88
MD5 50b4ce8d21e7bd033718ae6835a51477
BLAKE2b-256 9ecbb6baf4f2adbb428dde6984f6398f862cb9b7970548de4183929f910917ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0.tar.gz:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d257bdaa7845780298851c25708f40f1a6b8739a58731563163a625f277dde5e
MD5 a80f368a3f5e96e73950e3d2dab5abee
BLAKE2b-256 5485498fe3834b86fb024821b868f46110bf5e5c7899a110a1725d131dc98d2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6fc4b355e98d6e3ae4c69b47acff0174e859cb669b9bf096c3dbe35a4a39cc8
MD5 bc3f83155f7345f949c550e1f10a1783
BLAKE2b-256 42b384f2840d3da95485cdb93747604a9494d716920bea99429c5d846d17f9b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 df005f095b86aa7ac784648d73dd051d5918585340539f218a080062f2b2f388
MD5 95689c6112484ed0dbf5b6170146e32c
BLAKE2b-256 5ae279e0ee0bfd6a12fe7dcc432d59f629636bf00256f357324e505458e89971

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40dfc5c958bfe35627384471b0d790ed09077c4651c8181f9efa63b0188cc8b4
MD5 97655d933b99f616076b9c32e6ef1112
BLAKE2b-256 214eeab75587d84722511ad9b93ea555d028efaa66c9d6f1872803b4c64b6266

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 510877d7b9e2d9985a0d00e38991688ab8572f35e1379e64b10cc96cf622b063
MD5 16f43fb7be2eecfcab83022db7c5024c
BLAKE2b-256 16c89874360d34440ed1fea204ffb7a37daf712ba04721524f4894dd41d48228

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c5d71358aee2b4c8fa2d99b5511799d915a2d1064a4ceaa68f7128523ab65afb
MD5 ccb51a30dc8c04529f6e826f36ebfe3d
BLAKE2b-256 48f87d428e7f91918be9ff4ef6a62852dc8c5ebba100cd92efe8358ba7f87384

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 76985ef3b1a53e3af8e2a8470b3070c163c7d9fb1cc9ebb5c33edaacbc14716c
MD5 cec4fc0b019b02b4b5e4b4b2547fee33
BLAKE2b-256 627e2eebf6f16d666b037ef5d187e70ca9b7acc0dc1daaf2a8e728422d0935e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 910f2a7c12a49d7723beedc6e51f27ee5fcbc0a23ca154f9e4b3a55dcc51539e
MD5 65f42da60f02dd0d9315dd9e40c4339a
BLAKE2b-256 96e50ed2388b5867341ddcee80ec2acf3185d43e9d588ff4a48956ab44277115

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3c3e962de1de2e3bb0756de7aedebf941a0f44e57f5462c1169c193e586f98f3
MD5 5c99532cf2ea66d6bcb30f38b97ee349
BLAKE2b-256 5c4195be96e0270ea8bfcb1c3937cf5e28a3a85af6b0056964f1473db8151173

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 639beeff16361de756409ca1b5003a76199efa59e07df80fa8eafc05135b22b4
MD5 940b32acee21036e7e393570c85291af
BLAKE2b-256 cc19dd0693756617e6edebb5f08db48b3e05a04a37b546e395540ec9d39903f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46f0c0d746ffa25836e498f0c5a8b68c7f1dc04bcfcb342a87043291afe6dab2
MD5 1f7e0ff6ba66dd55347c98f2dd056766
BLAKE2b-256 85779e713160f7583a5d194e8d6d634df358bde6fad8db5e6ca4bc0e6cfc49c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a2fec8bfb27e2fa65f6b1949792eefd84bee0d817402cb619eeac2d69b269a21
MD5 0717e697dd0a27246c2b447755181791
BLAKE2b-256 6deed3dd73d4c8631a0e1697d3c4871a956071a18b87e38fae03b92c5e164639

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a4072c5fc609d8975c916082e7b55e3710e3cba383272c2378c9c3e049123ead
MD5 070466c68fde18413499c7a2adf44e7c
BLAKE2b-256 447b803e34cece1f3d5237987ce81f5f19f6078f01e0aca5edcd4f87f5c118d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19a14f31e7de3cf786828cca8d19132adfb990b65f82ce16a9f50c8ec09802bf
MD5 b44332d7aa4bc5124e9caa1e95b0d710
BLAKE2b-256 7cbed0a70b44aeb814c9aac10421b838496625db552b214f163d07f85b58c30d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 af4d870ccce37ebc76296854387d8dcd3cb7260b8b1bcf92a515acc7dc171c1b
MD5 bfdfd703fb40d686268efdd151ff0a59
BLAKE2b-256 cb2365c858b056750362e259dd13d81c4da07a06d019fe4af2df31513775cdf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5704aef8e8f5446c67bcfe5f5a66e4a1b019340f64cba3b31c045b6221c0e120
MD5 88b1a520f54144052c7098fcdcfd4969
BLAKE2b-256 a07013e7f989136420ec7ccac1e5c6efa8ba250450d82df42d35846e0cbc2254

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21e4cfee89ef3696dc63fe07cb0a26e5412a496ead0dccaa898830f3201c9931
MD5 40e32dbe295cb3326b47e5957cd10095
BLAKE2b-256 3b9851f9c7b4beba0aa6cb867209febc08034323e579b23b138a5a26b2ab3116

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 75ab0f5d6e65130fb15e0659c922613d59be7f6ac334419a5fe29c9fb57cd464
MD5 16d4d423fca9abd991240a16af44e552
BLAKE2b-256 4b40dfdfcb4b411841b4ffaadf4f98290cb28de3a4aefd989a56a9f1d1d754c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a6a6c1626857b00822073147afb30a9c4f5e2412e2aa2c3de5dc75413afaf248
MD5 0582500b2651abc87817279f08a57404
BLAKE2b-256 7b42b65c08712d9495a1d01550028ac68e1c1a8983e977e6ef1b12bffc1749a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp38-pypy38_pp73-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a71dc87e686457472a99e98a2677f31715590a6c602383c99556bd7e03957f5
MD5 95f1cc8f4a0d2ff18f92e1ed69554d53
BLAKE2b-256 cab8cff65570b63f24a8beb2e9972df8a4fba1b29f0094cdf8766cd9296449f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f591fff566a494bdf2731d8f7575258561ad14710ef5e5d414ab51c06ff7872b
MD5 39c47aeba76efabf6e2e6e026d358c84
BLAKE2b-256 2a080933196b8311153726cb01c7d92fb0368ebde44bf101d16a6ba6367fc6d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e32632cd378a5da4b200fab396e4df742fb8f9e82198277c534af67795a823b
MD5 80f7982739faf12e2e836e6a22aa4c41
BLAKE2b-256 78d1c35c6332c1a0d15b57874bfe94bd00f1e8b687a8e0526cbfb59e36fbf8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp38-pypy38_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc647356a6d731e64b3df1e9570ebc580071be5e6a9651a8647fc80a76f6d9e0
MD5 573cced6133da04d79b247ca5484d781
BLAKE2b-256 4bf9bbb48a372b88431b8b5624fb6b30bcca86a4761b52da4c8bf10098472b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0a4db5003abb77ef83a05b13c46d71739c48ae10f9986d9484e2d402c7852cf
MD5 7fb9b1b2b572c3587645f2d06517137f
BLAKE2b-256 94b3b733bac6ccf3c4399cd4fe69b53fe67786c8fdad73b96067edc158ea8030

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0294b0b8b450855352e6187b40a585a2a72e6549aeb65b32b5cc5c3b09333247
MD5 78b3ded850ae71bf822228642aaad91f
BLAKE2b-256 c5e1ef3c8ccf9310da987ebce0579477dde7b44b95075d47bb40ca3cc3905474

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-win_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 548223e81097bb7362c4245e8ee11bf3f24c93999ff1a333b830b117cb4056f6
MD5 35ec3984561e587f6b9373d629dabb01
BLAKE2b-256 f35cd6c67ebeb03d1b2f28b47dba955679044f643f4578c416df5368fe63d223

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 26edbfe2e95eb0c64bdf2c64dfc4079ed67044932059df5cd41bf666c323b38a
MD5 6b1c8a98f9c39f8d59c71785a75e7c72
BLAKE2b-256 ef1319aee3d329c733c421c2f61b38849ff14a598d3c15d120c754c7232c05e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-win32.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19f14ff1182fdabde10946a3ef6f2c289c56b2b219cec348f19d65b0ad432f93
MD5 e96d48d17ec4206198bb6b5845ba1fed
BLAKE2b-256 c83c609f909b0488072c130eb01d3260420773ea40d60d1d7ade7754690e7119

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eba3eaa04f6438dfd5d5a4c1013d6326f72c997e8c85b4c97c10b1bd13e73468
MD5 7381fa0c731869ebf6ecb66695d3fc26
BLAKE2b-256 e08e4e8ec49f28eaa798a03ab5a74d42fb6df692d576972fad1aef7aefd79fe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2985fd251aca89af3109b9a50a0d4d8a1a6c176d33ddd17580db68f2d27b25b5
MD5 556a28cbcab884ce23c14291a1be1dec
BLAKE2b-256 f0ad87b0005ad8d8558be1f7e669a49d09f839be489fa0f36f65ab04f846f623

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76a0a1d7eca7016bf70767f86997c5d59401ee3e5a79c1c55cbfd4551d0f4154
MD5 27970d6f3679be980844c35098d0dc95
BLAKE2b-256 fcb1f23571b725af7afd41f8597835f4553a94039e2007047e999a1cbb7375b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 853375a8c38877c2241ce32f3c01327b8753f714ea257b1171c805de6e27f2a8
MD5 c1830b167ae919f47835f78abefb7897
BLAKE2b-256 f413c22e37148debabe4ce7eed949d30064d5a676fb628143931321f91e3d594

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 414bbdbd5b6ff3fdbdba56cbcd783aeeb1a8a5232b0245b4b015b94ecea3213a
MD5 3699d58fff823a106d5ba72131ff8be8
BLAKE2b-256 2b5d9bdc91b1608a7b28d9896c4fe2a8051fa6768c3986806acf442b6bde49c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d6e940bcb201b5729bff35171c53f2180c873cf0a3662ac78f203a876b72bc71
MD5 39f9f9313cd9baab7a3406a972a7d1a4
BLAKE2b-256 36d8bb1a47599077ac378687aed18d32026248810a11a3a141bf2fa16eb399b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c0414c36f47959a6f2ee28e4aa17dc7f552abaf2c68eeb4d364df71dd914e06
MD5 2db084b0114462f3d3e6b162f114138c
BLAKE2b-256 8a6e86749456b248b4bb232e7c94be841fc241da49de89b5ac51568cc8a9d70b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be4b3e8f3c07643b830d278d0e2cafca45bf6634f784cbe6e51bddf9c5cfb36d
MD5 8aa8dbec9814e5c7898dd4d8f5d68421
BLAKE2b-256 5d427776ea79f89a3bfbe0916c360bbbaafc33ff4835c8ba06c630dac62c9b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4ca2634f12fc8efca9e18e26678ff7e002087b4769753c1093a9544f6f897bb
MD5 168c855932b33555fe55a949cfe55b79
BLAKE2b-256 80418af361d54cee518c40a7f20d77ecc1f4914e80d2df5097cca7bc81de27b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5ff21b3809548cb2aaedf385fee606df6effa9f8c9638493d045b3b3f5eded14
MD5 b4f89c5a49c0f77b598ee9a7e8066987
BLAKE2b-256 4baf7d12628255ee682a11c674a758eb7f482952f7ff31988c963113ff10df0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-win_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dc59a03422555826c93fef76c88bfd92e4c879d3e42a2b126ccbc52ab50b4f87
MD5 f8e6be742e4c71f7cc3dde21b513e119
BLAKE2b-256 abd409a093bba9e21fcf86bd460fdf409e5bf8bb0c0d3e209bbb13f1ece38ac3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7144d370be0f7cc100c1d5e3dd5b99e80fb65a54faeb59208607aadb3581d2fe
MD5 a2f8998f73a4bd8c821c47eeeb7dbd5e
BLAKE2b-256 18c951287eed88eb710eaa487390c373d81c9e908fb02adbe8e4acc4c94e7211

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-win32.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f71496aa573a4e833c49903a4b78b7f018e9ba2eeef4b43713af58be8432a1a5
MD5 750cf0c2ceab78bc598dacb8e48f1813
BLAKE2b-256 862b877176ecd83923834bc30cb65cc86cfbad6032b604b3c17d5755f57d9d5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9dd653687ada47f23c06111eb9bfe7487e196023a8e0310c16b54b2c749f900
MD5 a6c57a8b4e76ca473e7386784fd48998
BLAKE2b-256 78032971718bf4f4534772023c41e3a4b07d93c1f4c8b945182e3e477b230457

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9efa4d626c7414f806387864948634c12ec84f9159c3c75a8d9a4a639180d820
MD5 a72e3f18fe5e5e5622e56040314adf10
BLAKE2b-256 db00891687320340d2b75f75d1cceb50c3b00a2e58327cde712b5ba73253405b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 735cb049ef34f13826f9bac01ea3eeeb86f6561c301ad2501dc1d19d7f784c8f
MD5 7998ca0e68833fc7f82da8ea73f2089f
BLAKE2b-256 0eac52ea199e1560375b8a067dcb284fd4b7a4c4e5265c5382b4b884c26a1986

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c82edf40230a534c7181909586c523f746bee2965296c2d608a2bb7275ffdcc
MD5 b90e7b7ccbf534ac76c83318763fd64a
BLAKE2b-256 533ec02722b9259bf1a1d9d0669b3950cbcea6aa8f528d0c06215f3cfba8b5df

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9111ce192689b9abe6c7c2745926f2d3929ed50025b6bac12b93505556ad10a3
MD5 ab938b1ccd08d83760bcc5a053a7e5a8
BLAKE2b-256 33ba24284417653b25d3373fa914b8b6257e84138d0da4bab1ba15e2ffc86091

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b870541be535cf6b2074fb7ca2db1aebeee18cb3860d73b122cfc4ddbda84881
MD5 903a6b8d495f7a897053f5bf683ecf2e
BLAKE2b-256 108dc6680160b800dbde13f041e1cd5ba4f2d358ad8ed2e9941985a408b4fea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5206c1bb17550aed49141144e9b091131cbdc5bdcc87687f5fcdde7d6715fd9
MD5 f70c27a8826a01a0a6ad12a6f42f7531
BLAKE2b-256 e87bac2de448df774c8c8ec5015666a0de0b86277f4af08d5fc2fcd725923367

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 481a3fb47e78f36c24b01a9c4af7b3c28fe8f8ea0af26649a69f4471fc7574aa
MD5 84b97ba5d75ef7123604105fce14d3d7
BLAKE2b-256 9ca8784040d790cfeba1b6a0071b88dcc6fb10aceaebe81c87dbe7daaaabfb7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf085472ae383339f106f13daf12f4332532acdd190eae7966c786a0e79e1941
MD5 67b56db28dcad63ba2b59eb2fc43df32
BLAKE2b-256 97972d694f1e20b3469b4be8eb2dbb164033ea07b90b06c2cd04cd57cd78cb7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3c57c776d838068cdd5bef1bfa9134c89e3d6c049c3928e2bcb5bc3e8b6f6d88
MD5 6474ae677a7ba845446e4a05de3a2baf
BLAKE2b-256 5e4f36c770471f8740fd222290dea197839ab99fec29bd0a68ac62c152750218

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-win_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e490dfd480a0e0a367a66d0e492a279d462c10a0e8882da8907505c04775ad8
MD5 fd6ba846142c8b6ebb95ffc9218a59f8
BLAKE2b-256 4c5223083b95711f091e26ac340f0d8e8f85b9caa6dc607ae614470700cc4b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9e47f31c2798376ba99cf58310b181f903fc550441228295ff761ea5f87ef84f
MD5 20c937784e561e4edd30e2c3414985d1
BLAKE2b-256 78bfa95e8f486858e606419d07b72773e25a9f32afa3a6732fde15b56f9edac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-win32.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 989ffd949a0b95408c3d1c11f7f71b37e6a43ce603e31d736644ee0c1165ee98
MD5 a42e15eb9448ed0a031505d6fe42bb9b
BLAKE2b-256 4f6b0abfa7c1db5bf3214a9403e38e04c0d336a63845c9dcbcebf700881d7ca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73f0c31b216b4ff5f905e5c323aa785bd690691490b87d746fdf3e14942e5359
MD5 1ec899273fdb0646c0e9d2d7817dda9d
BLAKE2b-256 52f4414e2ffe4d27d57cfc330d2a44710d488f209fb5d324d7e85e0bcf82406f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57c2f18c393dcb4ca545f3729c6b5cda039b0f9436c64104526b248c117e5635
MD5 7e5655cf6e635d12074cc17ea63f3f3d
BLAKE2b-256 462c7784ac868e97e66765d5992534040a6c16ce994d395f787d52518f347680

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03a97c8889610bdd9852b6f6f40217d32802e86ee525cd5bd12663a40a0e4ddb
MD5 81f7a3b21bb3bc0658ad221c27f61d5b
BLAKE2b-256 7a2923321becf812f3bf83b43d4148570c118489d868eb489c76396af2bcb833

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70cfb35146032f05953362007e1a78689060b28d8281b7d2b45f98bdba7997ad
MD5 255e15b5f40b15c575c779f973ceddd1
BLAKE2b-256 730f98f1b379a1959e81c04e616ffc0eb1052d014bc4d540dafd99c27936aa19

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 98688127349d4a14c4806a2b730943634c61720e6b1d43a06792af8cd0acbe36
MD5 444fd8e47491a96bf1328884f4c3c4d7
BLAKE2b-256 2ee946914a95364f0819d97a0d1671a9d1200c84fdb69ddfc865a648a50d0f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e1b7e54cbbd20d81f5cf3e68c245eb58426e6a0490250e3b4f99685c178e7745
MD5 2ecb18acd04d96ff98525c6559b37cfa
BLAKE2b-256 71d2fd1b7253e3812c848b72441604c0a2385c642181dec9f61d967c7a5fe0d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a516517a7f4619869147b1fa78c8683cac942329a8593ec714fa0a5f80706512
MD5 5e51d8f4daa2a5adf8d3e80ee2aba9f9
BLAKE2b-256 abc3cfae74990004c9ebd881dd60ce1e558670783683425b4f7b3a8989763f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b99d3016290b650b0bb26b04b3d78a5e4586dc89e0331cc9506b70e1cacf2c95
MD5 ee14d87a792bc3de915573c3fb1923af
BLAKE2b-256 d41799c6f4c58e73f07d74932bfd5f9d18d6bd89266d0648201dfd6c745eac4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38ccba3a6960bf208a47c563284f2c19d40addbeb6f39e42eb26f2f2b643b19d
MD5 80a76fe3d5ca0a5dec4fd8263d18b56d
BLAKE2b-256 ba4e20c422f9538a8f5d63fcff83ed317c547742c29ea404ff886c478eaa8d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 386d0ef790dced1cf18df42de2d1d18ba21462c4052f1a579815ad8bdaeeff81
MD5 c05b9302c44338cdb05258be9413c49b
BLAKE2b-256 9354ba1326471a89d599e5dce4df44fab047c8cd67313624ff9048c131a34e2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-win_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 50f96101938207ba46e88e893bc1404a0e377bc95b6905cb875255a18b259f35
MD5 0988f5151db93c11dafdc21aca4cd099
BLAKE2b-256 e0b8d0487efbbab3de9d970f792a301584b88014fbf74e82c68af46642eb400a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c92e8d782c91c095effd51b1ea1ff884270ed464a591fcb34a332d86f693ce0d
MD5 fa339fa47a664e4f25cb040932bee898
BLAKE2b-256 928b17e3ff94a502f6581d3057736dfd6cd2be99583914c6285795cf52efa785

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-win32.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85a41713bda859933801e9655c084b61cc4fc923d610f54913c2d3af873aee1d
MD5 d8392cc79f2bfe7adcf5108a54679586
BLAKE2b-256 27cb50caff5181720eda416608d4f0b3e497ef30b7ca89eaa0c27c4b9a62b005

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e090d20d2a10a897b2ce69f6d0593836476f80354eb6c250fbd8ae3ce6a390ca
MD5 5120a1177c488e4ca942c69fb1bac270
BLAKE2b-256 95fb59db4decea7144ef1e56737b19be856dc3c8049e84b373ac3e3081cfccce

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff276253fc4defb00f8607a5192558c5da64c0964fe80ae8de82681a2312b5e1
MD5 05db1526744823decfc75155ef5c8a73
BLAKE2b-256 84df19f6c15123a7a83893dbb5307604c5227017549efabaebd26d9209eeffe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce254049e45ecfe9e46f0e039661367173565cdae4fc7268f506d17855f85fa2
MD5 947002f914b06ba8b861e6b457382024
BLAKE2b-256 23c84c7ea0076b0fbbc41ebefcb97ae7fa69f4753c1fd6209a087997df90f91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c61821daacfbc59ff56ea5ddd28d7d55299b12461537bca91bd806519226dcb4
MD5 0e41235cb2c13c600a850d99802a1faa
BLAKE2b-256 ce3de340ec62ed9800b589ad0d857aa3f01e7b8a44aa763e3045768191080666

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6daca45c00c09578f865df9b34c1d0cd817199546c04e8453894b37dc3fccaa4
MD5 244b4f523b4071b851ef95f754bec0ab
BLAKE2b-256 2e89b18eb2bb057d3cabcbc998058385c41165525f975bc0e2e95eb5c0732e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6488beb0e1ea8d2348e040cb3e737d9432065238fcac1f821389526792f94ed0
MD5 9fdaca5ff1b130856d25c270dfa819d0
BLAKE2b-256 9b52326a1f1158d862362d0e7a6274e5c3a5618dcad18c73e0a58383623c0d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f720a830370175a5054cab15103f45705702a393864c55217614b9e9a070343
MD5 7ddbdd65694fb6fea20186f3fa962000
BLAKE2b-256 46e3921651cb755221189a0f7fa80a78a061ac558c3fcf1dea9fffeda2beb222

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 673199e678eb0ad6cb091c7b34383d2805b7dda65646a612de3edeab65dd29d0
MD5 79dbc0e0c880384fc5684e91c26ffb50
BLAKE2b-256 9039f59435e1c588421ecd9a64545dceefe527e01470b3ece2e9d4f0368cba74

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c8016304b7942413766a9956a7a384c2263b2f3d6527787e8435084b43373f4
MD5 e4a6aeebf8e5f1eb59c7d4e7d05a8b6c
BLAKE2b-256 4fb91fbb9182b094824bf017fe74b5e179a6d259c7392cee43c11467c553f535

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 96ca22f10787a323e3155113922428153f13ee0521168bd8e91d3993c242a586
MD5 029bcca4249e920afb136e3ee2edf4f1
BLAKE2b-256 2c4e70371f5fe94d66bc5f9fb9e72785d256880b122009f6f415428691b8a753

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-win_amd64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: tradeflow-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 07f029310853300e5d3e1a4d1b1832e53482b4dd7ce5361a891c0340e17f4966
MD5 cc006bffd96493bfc88baec4f2124f6a
BLAKE2b-256 ac0097e4bb3f8cd6bf63c5dae788ab4c05845ea8f363c623a6aa047d45538162

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-win32.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b541f406684d0f1aee56ed062a37fe9dc918cf20267ef3917ab493b9af0922c
MD5 0cb299bcbb23a8cdbc1c63d0099d88a5
BLAKE2b-256 30eeb75595e1b1437d3726d517f6c6fa2c129c5cef5be734fe1fc0fa80503a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52a6dfd280e197ef2d2f3b30070fc090d5ef86f0d3706289ac40ca80bd904c1c
MD5 0eb1110562b64ec4f458bbbc7663f655
BLAKE2b-256 0ac9f356612d578d2c8a300a7b12e5dfc02b586da78ade64d2c71531b1b15c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11bbb2df2bc9c346a466e068995c9f7ffe4c11a9814b43343d3157d1ccca761f
MD5 9e6a6559691f0554d22e20d39b065386
BLAKE2b-256 e2d23bb2c6f0836078b28a5fa2a35ea867ac1587931ecc823c0c3c9bce8b2981

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d126b3b87142547c437cd87cb5cd542791f36bc4678abaee8fb6671760034d1
MD5 933b680ff46da579ca1055622c75f64c
BLAKE2b-256 d4c75029c4e1902d3466df097460c673cef75b00e0801ac43c03ae0324a1c5c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6346fc812fa1efa801577b3834045938aa71287fb8fa4482a6b6c6a609c4523c
MD5 569e0803871a4100776a286541ca9b2c
BLAKE2b-256 e2de4cb24380901b94ea22c9dfa216f1089a3b175beaec9427ea4e513215dc25

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 709138926e35d4fb52a2c46d80ca350890608e8bdd8b618c54319d618a21360a
MD5 2d822cfa60dc76393dccf492877d8163
BLAKE2b-256 15d3d254d04e3a0f8e52125fbe9af290c281386d85864bea24291381890cd6f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 32da5a219fac950df6fa973ba5eb3421c5951a27483d42d121f965b3749dd1b0
MD5 e9a1f861032dbb8ea5278f8d04059bff
BLAKE2b-256 fb48aa0affa6a012a303674c7f721d9d66db386e06a74eba86b1bff3291ed168

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43b4b24f947909ae978506c7b5969a826bc41c7a8bebea671d5c368ada5bf731
MD5 d5ba3e6d7b157242fbb2608d92af9806
BLAKE2b-256 5bb754c261d5b25401e8e7c11ef3d2f4ba34689714b0a81c509f62beb27ee59c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c52004157d8410e811ecdda6cc2b1f6746ed403e64acae4fd01d493bc2c8ef6b
MD5 9edd4bbd799d97744e3aa34e46e752ba
BLAKE2b-256 2ad1be4bf81ae95b213065e53214a4cbf579e2395e75e1b2933bc834e9c1fa26

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

File details

Details for the file tradeflow-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tradeflow-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c256997254ca215f9a4abcb4dc29195f43863cf64d56cd0858468e98e3d17092
MD5 0122006142db3f5d6032979693fc1d08
BLAKE2b-256 e0f298c0978ec917b0dffb8e116f487a6389482ba17f48c378d07ec88284bfba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tradeflow-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: python-publish-to-pypi.yml on MartinGangand/tradeflow

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

Supported by

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