Skip to main content

Python wrapper for ta-lib using nanobind

Project description

pytafast

PyPI Python

A high-performance Python wrapper for TA-Lib built with nanobind. Provides 150+ technical analysis functions with pandas/numpy support and async capabilities.

Features

  • 🚀 High Performance — C++ bindings via nanobind with GIL release for true parallelism
  • 📊 Full TA-Lib Coverage — 150+ indicators including overlaps, momentum, volatility, volume, statistics, cycle indicators, and 61 candlestick patterns
  • 🐼 Pandas Native — Seamless support for both numpy.ndarray and pandas.Series (preserves index and name)
  • Async Support — All functions available as async via pytafast.aio
  • 🔒 Memory Safe — Zero-copy data access with proper ownership management

Installation

pip install pytafast

Build from Source

git clone --recursive https://github.com/twn39/pytafast.git
cd pytafast
pip install -v -e .

Quick Start

import numpy as np
import pytafast

# Using numpy arrays
close = np.random.random(100) * 100

sma = pytafast.SMA(close, timeperiod=20)
rsi = pytafast.RSI(close, timeperiod=14)
upper, middle, lower = pytafast.BBANDS(close, timeperiod=20)
macd, signal, hist = pytafast.MACD(close)
# Using pandas Series
import pandas as pd

close = pd.Series(np.random.random(100) * 100, name="close")
sma = pytafast.SMA(close, timeperiod=20)  # Returns pd.Series with preserved index
# Async support
import pytafast.aio as aio

async def compute():
    sma = await aio.SMA(close, timeperiod=20)
    rsi = await aio.RSI(close, timeperiod=14)

Supported Indicators

Overlap Studies

SMA, EMA, BBANDS, DEMA, KAMA, MA, T3, TEMA, TRIMA, WMA, MIDPOINT, SAR

Momentum Indicators

RSI, MACD, MACDEXT, MACDFIX, ADX, ADXR, CCI, ROC, ROCP, ROCR, ROCR100, STOCH, STOCHF, STOCHRSI, MOM, WILLR, MFI, CMO, DX, MINUS_DI, MINUS_DM, PLUS_DI, PLUS_DM, APO, AROON, AROONOSC, PPO, TRIX, ULTOSC, BOP

Volatility

ATR, NATR, TRANGE

Volume

OBV, AD, ADOSC

Price Transform

AVGPRICE, MEDPRICE, TYPPRICE, WCLPRICE, MIDPRICE

Statistics

STDDEV, BETA, CORREL, LINEARREG, LINEARREG_ANGLE, LINEARREG_INTERCEPT, LINEARREG_SLOPE, TSF, VAR, AVGDEV, MIN, MAX, SUM, MINMAX, MINMAXINDEX

Math Operators

ADD, SUB, MULT, DIV

Math Transforms

ACOS, ASIN, ATAN, CEIL, COS, COSH, EXP, FLOOR, LN, LOG10, SIN, SINH, SQRT, TAN, TANH

Cycle Indicators

HT_DCPERIOD, HT_DCPHASE, HT_PHASOR, HT_SINE, HT_TRENDLINE, HT_TRENDMODE

Candlestick Patterns (61 patterns)

CDL2CROWS, CDL3BLACKCROWS, CDL3INSIDE, CDL3LINESTRIKE, CDL3OUTSIDE, CDL3STARSINSOUTH, CDL3WHITESOLDIERS, CDLABANDONEDBABY, CDLADVANCEBLOCK, CDLBELTHOLD, CDLBREAKAWAY, CDLCLOSINGMARUBOZU, CDLCONCEALBABYSWALL, CDLCOUNTERATTACK, CDLDARKCLOUDCOVER, CDLDOJI, CDLDOJISTAR, CDLDRAGONFLYDOJI, CDLENGULFING, CDLEVENINGDOJISTAR, CDLEVENINGSTAR, CDLGAPSIDESIDEWHITE, CDLGRAVESTONEDOJI, CDLHAMMER, CDLHANGINGMAN, CDLHARAMI, CDLHARAMICROSS, CDLHIGHWAVE, CDLHIKKAKE, CDLHIKKAKEMOD, CDLHOMINGPIGEON, CDLIDENTICAL3CROWS, CDLINNECK, CDLINVERTEDHAMMER, CDLKICKING, CDLKICKINGBYLENGTH, CDLLADDERBOTTOM, CDLLONGLEGGEDDOJI, CDLLONGLINE, CDLMARUBOZU, CDLMATCHINGLOW, CDLMATHOLD, CDLMORNINGDOJISTAR, CDLMORNINGSTAR, CDLONNECK, CDLPIERCING, CDLRICKSHAWMAN, CDLRISEFALL3METHODS, CDLSEPARATINGLINES, CDLSHOOTINGSTAR, CDLSHORTLINE, CDLSPINNINGTOP, CDLSTALLEDPATTERN, CDLSTICKSANDWICH, CDLTAKURI, CDLTASUKIGAP, CDLTHRUSTING, CDLTRISTAR, CDLUNIQUE3RIVER, CDLUPSIDEGAP2CROWS, CDLXSIDEGAP3METHODS

API Compatibility

pytafast follows the same function signatures as the official TA-Lib Python wrapper, making it a drop-in replacement in most cases.

License

MIT

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

pytafast-0.2.1.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

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

pytafast-0.2.1-cp314-cp314t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

pytafast-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pytafast-0.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pytafast-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pytafast-0.2.1-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

pytafast-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pytafast-0.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pytafast-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pytafast-0.2.1-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pytafast-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pytafast-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pytafast-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytafast-0.2.1-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

pytafast-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pytafast-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pytafast-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytafast-0.2.1-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pytafast-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pytafast-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pytafast-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file pytafast-0.2.1.tar.gz.

File metadata

  • Download URL: pytafast-0.2.1.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytafast-0.2.1.tar.gz
Algorithm Hash digest
SHA256 151267128539b3b90b8b30be32384cc3b790b890cab673731d36be25b3ac3e2e
MD5 9eb2fdeb14e708cf77e027a6277fd218
BLAKE2b-256 c589769fc149ae7d4b4e6c8285950d5b6d8d27c7561ab81976e381716c33fc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1.tar.gz:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pytafast-0.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytafast-0.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8cf91005a7f6df0b45ac570397e8307dae70017311ab09d7ff0b1229b1b401cf
MD5 7888c98d11fe97ec504a7e4d49af13d7
BLAKE2b-256 6e7873da18d629ae0a04074a7a133995193a12d47328b1c659163ac6725a9d6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49696a47dca6ed8fd9d29424b0276f34a5a6fbea512609c67b88beae2537c272
MD5 1411888dece46dc654dea0e9ecc9cf97
BLAKE2b-256 ae0a68fb7d3b07324303183c4b05f7da9d6e21de0d913375598c9ed58450c3ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1032ab2fad5a4700a1ae13b30bc5cb6df5b5a39439de28549f2344b34c8dad04
MD5 bd28e38cc6b7f08a7a7a23d1b482622f
BLAKE2b-256 4ff321a2747dad159e3ea9895dd926ad975192cf495f4d55930f69355298510d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65fe8009c7dbfa0144e206677f81f89e5aa5fbcb7583215ba688deb3bd2cd6cb
MD5 1097d64198f553e47eca528ba8122bc3
BLAKE2b-256 8f738364b0f00dc2c574662b9626713510f277f1a435f5725ea9fcd8181fc92b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pytafast-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytafast-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b2f40ac4b9a2d968c2398bd367b5c05d4e2de12b7f7fff6474efb5e550993049
MD5 2fd0044ea9f2cb876463a1ac441d238f
BLAKE2b-256 ecebd33008d37db7f99fc9e9b92220809d13b736264311775dbc925ab9a69518

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314-win_amd64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d18582c07a7244d9f673fb1edaddb60555865f28ccd80f9641af25611affef3f
MD5 e5188efc652a7173b3b2ef58897fc155
BLAKE2b-256 f841b6bf779a39e20c435a56013f7898a9e59b7e57d0c15886ecb6f01c37fdf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6051360080482d769049ccd89fc903ae455caa88763725f57138f24eeb7d46e8
MD5 1934a9ac4dd5edcb2888b20918002ba6
BLAKE2b-256 74b07e2d4e7f286b27a99bd2e132bd3a77caf1c136e1ff373494b053ce39341f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c234f8ffb419e9b6b218da7a6b3342f00a38ce0fe44523ad0650c68d3761e36d
MD5 12b636ece6259a480b7d077d28772129
BLAKE2b-256 8508b2762ce362cd72da8075b181c5f31250e1624ff7657256e2aa02390673ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pytafast-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytafast-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8302a10ecbffba4ff5f16227cfc9a064b42d64d38e4aabbe551e5bb4b1a44ee8
MD5 11428df922970f89f3296a940f3a73ed
BLAKE2b-256 05de083100e7ca7c8846586eb63d956e9ea7aac42f4949a4c39bac3a7a42e882

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp313-cp313-win_amd64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b4eac1b712e8f6f027f65015c120cff5e13632c8382823713b33835574c5af7
MD5 4124277f255d416d6e647247469acb97
BLAKE2b-256 998b12892b5804ea1c4174717958806da286b10198c7bcad9a600ebd6ac2b138

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20d0653748ea70bcf0f8bae7665657c60b65cfeabfeb528ced80efd3547f5ce5
MD5 b98640a0b05fbfb02fe379cb2c45cf5e
BLAKE2b-256 e68cea641b127737176221adedbb8ab5dc438a714741d88ef5f47c889823dbbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06a0d4635be106bb6beec86d0b920e98431ced856b51da44c1d317646f3b8197
MD5 baa8ef149028581c1337588e6cf2a610
BLAKE2b-256 193849142c0928ca740ddf0f52e8b956636bd57f45ba06ee004c0caa10073992

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pytafast-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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 pytafast-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2eb413ebc90028e0d8425739c830f74eced34ef8bbb4334051d768828b553a8b
MD5 8c4dba8330b44dd81ecff8d98e63f31c
BLAKE2b-256 118c1f19b8d6765aaf587467a74c6f1652918f9baaff6ddd3163d160617960f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp312-cp312-win_amd64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15d3ac64e8fb9d1bcf629d549b666f3c2b70eb5971c1744481a1a2a0134c28d2
MD5 2a5edc92397dcdbc73b0d89dd152604f
BLAKE2b-256 37f4ab607caf6d1cefc4ba59ea157c789465092d44b5ea0f529dc5bdd16a0863

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0b5b40e51ef0917eeaa25b7accce2414245fba3f10b9a156e66f87d667f17c7
MD5 9e1d54aff795b842671a5b91443822ab
BLAKE2b-256 e55ea964b8199c8a28d4f54f6b41b3e004f70e70f6564ede26637519a43096e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc498db160ad0075e68f4a3aa10505ff18c8bee35de431b8a2232949ca53cc07
MD5 ea2942beb1c0a353d093e8a13fb28674
BLAKE2b-256 66211f0447be371c752096eb862cb53e6158164e3cac50e65b38c661e3e69ae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pytafast-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • 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 pytafast-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f39ffde4f7bba5283d664a91dd42bbb7b39c34f089a6c5d2116bc92a666974b
MD5 8c4d918fc9ea4628d9d4e7f60cedf0f4
BLAKE2b-256 6b4d67381b67cc0903ac94fbea9a7d9368803cdbbd24632528ce605c7d62b6e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp311-cp311-win_amd64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6783c2f2caf01b14e20f15aaa0a83cc513d46bc6d236e7260b82e10a5ff0758
MD5 89a7e396994cad6bc74bff809e61ac10
BLAKE2b-256 00b43367a37aacce70243598336980f0be54a472c71513c6a105681e57e4e428

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b700a795b0c52335a3ea587e4567b4e9ff52ae28667e450e55469ebc0902151
MD5 f78fbcfaf411c59ee970dc3b80cf8bde
BLAKE2b-256 8d1aa128ff70dd54ece0267c92edd9f3eac4e8082d94258f18d0edef20510e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on twn39/pytafast

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

File details

Details for the file pytafast-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytafast-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 527a020ece161e616f43411f9332101fced408baa28028c39f82ab026aeffc4f
MD5 dc118240f7a6ccd90c6ea97552a18472
BLAKE2b-256 c5d8f6b44576b339b69fc1ec3b30f64bbe53386e3485b24e67388518c606d744

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytafast-0.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on twn39/pytafast

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