Skip to main content

TA-Lib 📈

Tests Release PyPI Wheels Python Versions License

This is a Python wrapper for TA-LIB based on Cython instead of SWIG. From the homepage:

TA-Lib is widely used by trading software developers requiring to perform technical analysis of financial market data.

  • Includes 150+ indicators such as ADX, MACD, RSI, Stochastic, Bollinger Bands, etc.
  • Candlestick pattern recognition
  • Open-source API for C/C++, Java, Perl, Python and 100% Managed .NET

The original Python bindings included with TA-Lib use SWIG which unfortunately are difficult to install and aren't as efficient as they could be. Therefore this project uses Cython and Numpy to efficiently and cleanly bind to TA-Lib - producing results 2-4 times faster than the SWIG interface.

In addition, this project also supports the use of the Polars and Pandas libraries.

Versions 🗂️

The upstream TA-Lib C library released version 0.6.1 and changed the library name to -lta-lib from -lta_lib. After trying to support both via autodetect and having some issues, we have decided to currently support three feature branches:

  • ta-lib-python 0.4.x (supports ta-lib 0.4.x and numpy 1)
  • ta-lib-python 0.5.x (supports ta-lib 0.4.x and numpy 2)
  • ta-lib-python 0.6.x (supports ta-lib 0.6.x and numpy 2)
  • ta-lib-python 0.7.x (supports ta-lib 0.7.x and numpy 2)
  • ta-lib-python 0.8.x (supports ta-lib 0.8.x and numpy 2)

Installation 💾

You can install from PyPI:

python -m pip install TA-Lib

Or checkout the sources and run setup.py yourself:

python setup.py install

It also appears possible to install via Conda Forge:

conda install -c conda-forge ta-lib

Dependencies 🧩

To use TA-Lib for python, you need to have the TA-Lib already installed. You should probably follow their installation directions for your platform, but some suggestions are included below for reference.

Some Conda Forge users have reported success installing the underlying TA-Lib C library using the libta-lib package:

$ conda install -c conda-forge libta-lib

Mac OS X

You can simply install using Homebrew:

brew install ta-lib

If you are using Apple Silicon, such as the M1 processors, and building mixed architecture Homebrew projects, you might want to make sure it's being built for your architecture:

arch -arm64 brew install ta-lib

And perhaps you can set these before installing with pip:

export TA_INCLUDE_PATH="$(brew --prefix ta-lib)/include"
export TA_LIBRARY_PATH="$(brew --prefix ta-lib)/lib"

You might also find this helpful, particularly if you have tried several different installations without success:

your-arm64-python -m pip install --no-cache-dir ta-lib

Windows

For 64-bit Windows, the easiest way is to get the executable installer:

  1. Download ta-lib-0.7.1-windows-x86_64.msi.
  2. Run the Installer or run msiexec from the command-line.

Alternatively, if you prefer to get the libraries without installing, or would like to use the 32-bit version:

Linux

Download ta-lib-0.7.1-src.tar.gz and:

tar -xzf ta-lib-0.7.1-src.tar.gz
cd ta-lib-0.7.1/
./configure --prefix=/usr
make
sudo make install

If you build TA-Lib using make -jX it will fail but that's OK! Simply rerun make -jX followed by [sudo] make install.

Note: if your directory path includes spaces, the installation will probably fail with No such file or directory errors.

Wheels ⚙️

For convenience, and starting with version 0.6.5, we now build binary wheels for different operating systems, architectures, and Python versions using GitHub Actions which include the underlying TA-Lib C library and are easy to install.

Supported platforms:

  • Linux
    • x86_64
    • arm64
  • macOS
    • x86_64
    • arm64
  • Windows
    • x86_64
    • x86
    • arm64

Supported Python versions:

  • 3.9
  • 3.10
  • 3.11
  • 3.12
  • 3.13
  • 3.14

In the event that your operating system, architecture, or Python version are not available as a binary wheel, it is fairly easy to install from source using the instructions above.

Troubleshooting 🛠️

If you get a warning that looks like this:

setup.py:79: UserWarning: Cannot find ta-lib library, installation may fail.
warnings.warn('Cannot find ta-lib library, installation may fail.')

This typically means setup.py can't find the underlying TA-Lib library, a dependency which needs to be installed.


If you installed the underlying TA-Lib library with a custom prefix (e.g., with ./configure --prefix=$PREFIX), then when you go to install this python wrapper you can specify additional search paths to find the library and include files for the underlying TA-Lib library using the TA_LIBRARY_PATH and TA_INCLUDE_PATH environment variables:

export TA_LIBRARY_PATH=$PREFIX/lib
export TA_INCLUDE_PATH=$PREFIX/include
python setup.py install # or pip install ta-lib

Sometimes installation will produce build errors like this:

talib/_ta_lib.c:601:10: fatal error: ta-lib/ta_defs.h: No such file or directory
  601 | #include "ta-lib/ta_defs.h"
      |          ^~~~~~~~~~~~~~~~~~
compilation terminated.

or:

common.obj : error LNK2001: unresolved external symbol TA_SetUnstablePeriod
common.obj : error LNK2001: unresolved external symbol TA_Shutdown
common.obj : error LNK2001: unresolved external symbol TA_Initialize
common.obj : error LNK2001: unresolved external symbol TA_GetUnstablePeriod
common.obj : error LNK2001: unresolved external symbol TA_GetVersionString

This typically means that it can't find the underlying TA-Lib library, a dependency which needs to be installed. On Windows, this could be caused by installing the 32-bit binary distribution of the underlying TA-Lib library, but trying to use it with 64-bit Python.


Sometimes installation will fail with errors like this:

talib/common.c:8:22: fatal error: pyconfig.h: No such file or directory
 #include "pyconfig.h"
                      ^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

This typically means that you need the Python headers, and should run something like:

sudo apt-get install python3-dev

Sometimes building the underlying TA-Lib library has errors running make that look like this:

../libtool: line 1717: cd: .libs/libta_lib.lax/libta_abstract.a: No such file or directory
make[2]: *** [libta_lib.la] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive] Error 1

This might mean that the directory path to the underlying TA-Lib library has spaces in the directory names. Try putting it in a path that does not have any spaces and trying again.


Sometimes you might get this error running setup.py:

/usr/include/limits.h:26:10: fatal error: bits/libc-header-start.h: No such file or directory
#include <bits/libc-header-start.h>
         ^~~~~~~~~~~~~~~~~~~~~~~~~~

This is likely an issue with trying to compile for 32-bit platform but without the appropriate headers. You might find some success looking at the first answer to this question.


If you get an error on macOS like this:

code signature in <141BC883-189B-322C-AE90-CBF6B5206F67>
'python3.9/site-packages/talib/_ta_lib.cpython-39-darwin.so' not valid for
use in process: Trying to load an unsigned library)

You might look at this question and use xcrun codesign to fix it.


If you wonder why STOCHRSI gives you different results than you expect, probably you want STOCH applied to RSI, which is a little different than the STOCHRSI which is STOCHF applied to RSI:

>>> import talib
>>> import numpy as np
>>> c = np.random.randn(100)

# this is the library function
>>> k, d = talib.STOCHRSI(c)

# this produces the same result, calling STOCHF
>>> rsi = talib.RSI(c)
>>> k, d = talib.STOCHF(rsi, rsi, rsi)

# you might want this instead, calling STOCH
>>> rsi = talib.RSI(c)
>>> k, d = talib.STOCH(rsi, rsi, rsi)

If the build appears to hang, you might be running on a VM with not enough memory - try 1 GB or 2 GB.

It has also been reported that using a swapfile could help, for example:

sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile

If you get "permission denied" errors such as this, you might need to give your user access to the location where the underlying TA-Lib C library is installed -- or install it to a user-accessible location.

talib/_ta_lib.c:747:28: fatal error: /usr/include/ta-lib/ta_defs.h: Permission denied
 #include "ta-lib/ta-defs.h"
                            ^
compilation terminated
error: command 'gcc' failed with exit status 1

If you're having trouble compiling the underlying TA-Lib C library on ARM64, you might need to configure it with an explicit build type before running make and make install, for example:

./configure --build=aarch64-unknown-linux-gnu

This is caused by old config.guess file, so another way to solve this is to copy a newer version of config.guess into the underlying TA-Lib C library sources:

cp /usr/share/automake-1.16/config.guess /path/to/extracted/ta-lib/config.guess

And then re-run configure:

./configure

If you're having trouble using PyInstaller and get an error that looks like this:

...site-packages\PyInstaller\loader\pyimod03_importers.py", line 493, in exec_module
    exec(bytecode, module.__dict__)
  File "talib\__init__.py", line 72, in <module>
ModuleNotFoundError: No module named 'talib.stream'

Then, perhaps you can use the --hidden-import argument to fix this:

pyinstaller --hidden-import talib.stream "replaceToYourFileName.py"

If you want to use numpy<2, then you should use ta-lib<0.5.

If you want to use numpy>=2, then you should use ta-lib>=0.5.


If you have trouble getting the code autocompletions to work in Visual Studio Code, a suggestion was made to look for the Python extension settings, and an option for Language Server, and change it from Default (which means Pylance if it is installed, Jedi otherwise), to manually set Jedi and the completions should work. It is possible that you might need to install it manually for this to work.

Function API

Similar to TA-Lib, the Function API provides a lightweight wrapper of the exposed TA-Lib indicators.

Each function returns an output array and have default values for their parameters, unless specified as keyword arguments. Typically, these functions will have an initial "lookback" period (a required number of observations before an output is generated) set to NaN.

The lookback is function-specific and does not always match the value passed to timeperiod. For example, RSI(timeperiod=14) needs 15 price observations because the first RSI value depends on 14 price changes between consecutive bars, not just 14 raw prices.

For convenience, the Function API supports both numpy.ndarray and pandas.Series and polars.Series inputs.

All of the following examples use the Function API:

import numpy as np
import talib

close = np.random.random(100)

Calculate a simple moving average of the close prices:

output = talib.SMA(close)

Calculating bollinger bands, with triple exponential moving average:

from talib import MA_Type

upper, middle, lower = talib.BBANDS(close, matype=MA_Type.T3)

Calculating momentum of the close prices, with a time period of 5:

output = talib.MOM(close, timeperiod=5)

Functions marked in the docs as having an unstable period start with that extra unstable-period setting at 0. In other words, get_unstable_period() returns 0 until you explicitly change it with set_unstable_period().

NaN's

The underlying TA-Lib C library handles NaN's in a sometimes surprising manner by typically propagating NaN's to the end of the output, for example:

>>> c = np.array([1.0, 2.0, 3.0, np.nan, 4.0, 5.0, 6.0])

>>> talib.SMA(c, 3)
array([nan, nan,  2., nan, nan, nan, nan])

You can compare that to a Pandas rolling mean, where their approach is to output NaN until enough "lookback" values are observed to generate new outputs:

>>> c = pandas.Series([1.0, 2.0, 3.0, np.nan, 4.0, 5.0, 6.0])

>>> c.rolling(3).mean()
0    NaN
1    NaN
2    2.0
3    NaN
4    NaN
5    NaN
6    5.0
dtype: float64

Abstract API

If you're already familiar with using the function API, you should feel right at home using the Abstract API.

Every function takes a collection of named inputs, either a dict of numpy.ndarray or pandas.Series or polars.Series, or a pandas.DataFrame or polars.DataFrame. If a pandas.DataFrame or polars.DataFrame is provided, the output is returned as the same type with named output columns.

For example, inputs could be provided for the typical "OHLCV" data:

import numpy as np

# note that all ndarrays must be the same length!
inputs = {
    'open': np.random.random(100),
    'high': np.random.random(100),
    'low': np.random.random(100),
    'close': np.random.random(100),
    'volume': np.random.random(100)
}

Functions can either be imported directly or instantiated by name:

from talib import abstract

# directly
SMA = abstract.SMA

# or by name
SMA = abstract.Function('sma')

From there, calling functions is basically the same as the function API:

from talib.abstract import *

# uses close prices (default)
output = SMA(inputs, timeperiod=25)

# uses open prices
output = SMA(inputs, timeperiod=25, price='open')

# uses close prices (default)
upper, middle, lower = BBANDS(inputs, 20, 2.0, 2.0)

# uses high, low, close (default)
slowk, slowd = STOCH(inputs, 5, 3, 0, 3, 0) # uses high, low, close by default

# uses high, low, open instead
slowk, slowd = STOCH(inputs, 5, 3, 0, 3, 0, prices=['high', 'low', 'open'])

Streaming API

An experimental Streaming API was added that allows users to compute the latest value of an indicator. This can be faster than using the Function API, for example in an application that receives streaming data, and wants to know just the most recent updated indicator value.

import talib
from talib import stream

close = np.random.random(100)

# the Function API
output = talib.SMA(close)

# the Streaming API
latest = stream.SMA(close)

# the latest value is the same as the last output value
assert (output[-1] - latest) < 0.00001

Supported Indicators and Functions 📋

We can show all the TA functions supported by TA-Lib, either as a list or as a dict sorted by group (e.g. "Overlap Studies", "Momentum Indicators", etc):

import talib

# list of functions
for name in talib.get_functions():
    print(name)

# dict of functions by group
for group, names in talib.get_function_groups().items():
    print(group)
    for name in names:
        print(f"  {name}")

Indicator Groups 🏷️

  • Overlap Studies
  • Momentum Indicators
  • Volume Indicators
  • Volatility Indicators
  • Price Transform
  • Cycle Indicators
  • Pattern Recognition

Overlap Studies

BBANDS               Bollinger Bands
DEMA                 Double Exponential Moving Average
EMA                  Exponential Moving Average
HT_TRENDLINE         Hilbert Transform - Instantaneous Trendline
KAMA                 Kaufman Adaptive Moving Average
MA                   Moving average
MAMA                 MESA Adaptive Moving Average
MAVP                 Moving average with variable period
MIDPOINT             MidPoint over period
MIDPRICE             Midpoint Price over period
SAR                  Parabolic SAR
SAREXT               Parabolic SAR - Extended
SMA                  Simple Moving Average
T3                   Triple Exponential Moving Average (T3)
TEMA                 Triple Exponential Moving Average
TRIMA                Triangular Moving Average
WMA                  Weighted Moving Average

Momentum Indicators

ADX                  Average Directional Movement Index
ADXR                 Average Directional Movement Index Rating
APO                  Absolute Price Oscillator
AROON                Aroon
AROONOSC             Aroon Oscillator
BOP                  Balance Of Power
CCI                  Commodity Channel Index
CMO                  Chande Momentum Oscillator
DX                   Directional Movement Index
MACD                 Moving Average Convergence/Divergence
MACDEXT              MACD with controllable MA type
MACDFIX              Moving Average Convergence/Divergence Fix 12/26
MFI                  Money Flow Index
MINUS_DI             Minus Directional Indicator
MINUS_DM             Minus Directional Movement
MOM                  Momentum
PLUS_DI              Plus Directional Indicator
PLUS_DM              Plus Directional Movement
PPO                  Percentage Price Oscillator
ROC                  Rate of change : ((price/prevPrice)-1)*100
ROCP                 Rate of change Percentage: (price-prevPrice)/prevPrice
ROCR                 Rate of change ratio: (price/prevPrice)
ROCR100              Rate of change ratio 100 scale: (price/prevPrice)*100
RSI                  Relative Strength Index
STOCH                Stochastic
STOCHF               Stochastic Fast
STOCHRSI             Stochastic Relative Strength Index
TRIX                 1-day Rate-Of-Change (ROC) of a Triple Smooth EMA
ULTOSC               Ultimate Oscillator
WILLR                Williams' %R

Volume Indicators

AD                   Chaikin A/D Line
ADOSC                Chaikin A/D Oscillator
OBV                  On Balance Volume

Cycle Indicators

HT_DCPERIOD          Hilbert Transform - Dominant Cycle Period
HT_DCPHASE           Hilbert Transform - Dominant Cycle Phase
HT_PHASOR            Hilbert Transform - Phasor Components
HT_SINE              Hilbert Transform - SineWave
HT_TRENDMODE         Hilbert Transform - Trend vs Cycle Mode

Price Transform

AVGPRICE             Average Price
MEDPRICE             Median Price
TYPPRICE             Typical Price
WCLPRICE             Weighted Close Price

Volatility Indicators

ATR                  Average True Range
NATR                 Normalized Average True Range
TRANGE               True Range

Pattern Recognition

CDL2CROWS            Two Crows
CDL3BLACKCROWS       Three Black Crows
CDL3INSIDE           Three Inside Up/Down
CDL3LINESTRIKE       Three-Line Strike
CDL3OUTSIDE          Three Outside Up/Down
CDL3STARSINSOUTH     Three Stars In The South
CDL3WHITESOLDIERS    Three Advancing White Soldiers
CDLABANDONEDBABY     Abandoned Baby
CDLADVANCEBLOCK      Advance Block
CDLBELTHOLD          Belt-hold
CDLBREAKAWAY         Breakaway
CDLCLOSINGMARUBOZU   Closing Marubozu
CDLCONCEALBABYSWALL  Concealing Baby Swallow
CDLCOUNTERATTACK     Counterattack
CDLDARKCLOUDCOVER    Dark Cloud Cover
CDLDOJI              Doji
CDLDOJISTAR          Doji Star
CDLDRAGONFLYDOJI     Dragonfly Doji
CDLENGULFING         Engulfing Pattern
CDLEVENINGDOJISTAR   Evening Doji Star
CDLEVENINGSTAR       Evening Star
CDLGAPSIDESIDEWHITE  Up/Down-gap side-by-side white lines
CDLGRAVESTONEDOJI    Gravestone Doji
CDLHAMMER            Hammer
CDLHANGINGMAN        Hanging Man
CDLHARAMI            Harami Pattern
CDLHARAMICROSS       Harami Cross Pattern
CDLHIGHWAVE          High-Wave Candle
CDLHIKKAKE           Hikkake Pattern
CDLHIKKAKEMOD        Modified Hikkake Pattern
CDLHOMINGPIGEON      Homing Pigeon
CDLIDENTICAL3CROWS   Identical Three Crows
CDLINNECK            In-Neck Pattern
CDLINVERTEDHAMMER    Inverted Hammer
CDLKICKING           Kicking
CDLKICKINGBYLENGTH   Kicking - bull/bear determined by the longer marubozu
CDLLADDERBOTTOM      Ladder Bottom
CDLLONGLEGGEDDOJI    Long Legged Doji
CDLLONGLINE          Long Line Candle
CDLMARUBOZU          Marubozu
CDLMATCHINGLOW       Matching Low
CDLMATHOLD           Mat Hold
CDLMORNINGDOJISTAR   Morning Doji Star
CDLMORNINGSTAR       Morning Star
CDLONNECK            On-Neck Pattern
CDLPIERCING          Piercing Pattern
CDLRICKSHAWMAN       Rickshaw Man
CDLRISEFALL3METHODS  Rising/Falling Three Methods
CDLSEPARATINGLINES   Separating Lines
CDLSHOOTINGSTAR      Shooting Star
CDLSHORTLINE         Short Line Candle
CDLSPINNINGTOP       Spinning Top
CDLSTALLEDPATTERN    Stalled Pattern
CDLSTICKSANDWICH     Stick Sandwich
CDLTAKURI            Takuri (Dragonfly Doji with very long lower shadow)
CDLTASUKIGAP         Tasuki Gap
CDLTHRUSTING         Thrusting Pattern
CDLTRISTAR           Tristar Pattern
CDLUNIQUE3RIVER      Unique 3 River
CDLUPSIDEGAP2CROWS   Upside Gap Two Crows
CDLXSIDEGAP3METHODS  Upside/Downside Gap Three Methods

Statistic Functions

BETA                 Beta
CORREL               Pearson's Correlation Coefficient (r)
LINEARREG            Linear Regression
LINEARREG_ANGLE      Linear Regression Angle
LINEARREG_INTERCEPT  Linear Regression Intercept
LINEARREG_SLOPE      Linear Regression Slope
STDDEV               Standard Deviation
TSF                  Time Series Forecast
VAR                  Variance

Release files for TA-Lib 0.8.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for TA-Lib 0.8.0
File Size Uploaded
ta_lib-0.8.0.tar.gz 516.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for TA-Lib 0.8.0
File
ta_lib-0.8.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
ta_lib-0.8.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
ta_lib-0.8.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
ta_lib-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
ta_lib-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
ta_lib-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
ta_lib-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ta_lib-0.8.0-cp314-cp314-macosx_14_0_arm64.whl CPython 3.14 CPython 3.14 macOS 14.0+ ARM64 Details
ta_lib-0.8.0-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
ta_lib-0.8.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
ta_lib-0.8.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
ta_lib-0.8.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
ta_lib-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
ta_lib-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
ta_lib-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
ta_lib-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ta_lib-0.8.0-cp313-cp313-macosx_14_0_arm64.whl CPython 3.13 CPython 3.13 macOS 14.0+ ARM64 Details
ta_lib-0.8.0-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
ta_lib-0.8.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
ta_lib-0.8.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
ta_lib-0.8.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
ta_lib-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
ta_lib-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
ta_lib-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
ta_lib-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ta_lib-0.8.0-cp312-cp312-macosx_14_0_arm64.whl CPython 3.12 CPython 3.12 macOS 14.0+ ARM64 Details
ta_lib-0.8.0-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
ta_lib-0.8.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
ta_lib-0.8.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
ta_lib-0.8.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
ta_lib-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
ta_lib-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
ta_lib-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
ta_lib-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
ta_lib-0.8.0-cp311-cp311-macosx_14_0_arm64.whl CPython 3.11 CPython 3.11 macOS 14.0+ ARM64 Details
ta_lib-0.8.0-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
ta_lib-0.8.0-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
ta_lib-0.8.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
ta_lib-0.8.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
ta_lib-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
ta_lib-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
ta_lib-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
ta_lib-0.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ta_lib-0.8.0-cp310-cp310-macosx_14_0_arm64.whl CPython 3.10 CPython 3.10 macOS 14.0+ ARM64 Details
ta_lib-0.8.0-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
ta_lib-0.8.0-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
ta_lib-0.8.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
ta_lib-0.8.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
ta_lib-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
ta_lib-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
ta_lib-0.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
ta_lib-0.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ta_lib-0.8.0-cp39-cp39-macosx_14_0_arm64.whl CPython 3.9 CPython 3.9 macOS 14.0+ ARM64 Details
ta_lib-0.8.0-cp39-cp39-macosx_13_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 13.0+ x86-64 Details

Total release size: 90.2 MB

Release files / ta_lib-0.8.0.tar.gz

Download URL ta_lib-0.8.0.tar.gz
Size 516.2 kB
Tags Source
SHA-256 checksum
How to use checksums
91b5e127dc28277128abeb54f64676ca5b4c6e86217ea8825dfa10937e2a4e06
BLAKE2b-256 checksum
How to use checksums
c9354148628d328ccccdc739623cb06632dd6fe3693968ef6d536f2f038c3e77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-win_arm64.whl

Download URL ta_lib-0.8.0-cp314-cp314-win_arm64.whl
Size 970.0 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
b521afde0d8620609d6a61d10d2c298154f345e57ce21304b54dd865bc72dc8d
BLAKE2b-256 checksum
How to use checksums
ae2454545e4011948297b4195efea85502bb70cb4273d4a689853f15eaf5eb63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-win_amd64.whl

Download URL ta_lib-0.8.0-cp314-cp314-win_amd64.whl
Size 1.2 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
85cd66c1b36a7112aaf23dfd6ce088248900e534ab2fbc06e2ef835ef70d4284
BLAKE2b-256 checksum
How to use checksums
defbaa33a069613d723d32d06b9a3b5c354a0745cbc24e2d659aa79fbbebba7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-win32.whl

Download URL ta_lib-0.8.0-cp314-cp314-win32.whl
Size 988.9 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
f71b2b3f06c44cd0988754d127402bbfdc1492f94028400b3cec69e89a83a1b1
BLAKE2b-256 checksum
How to use checksums
4f815946dfebac139e35dd0e0de116900e634153ab5297baec932111831e0538
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL ta_lib-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.2 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d8b6244249cac70c363a9eec4e41b74e231c43c956ebb8d064408e1bf1caacff
BLAKE2b-256 checksum
How to use checksums
a498a1c9ce1adc48bb35380a75efaef9b740bf307b97723883603266105f9e63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL ta_lib-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 2.0 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
114775fa0e13a7e00ff17978730e9d4dddcf44feb2b6ece3aa769366f6a9f621
BLAKE2b-256 checksum
How to use checksums
2ad12fded2a767190a282fa257f1934238ff0e001087e84bb3a5ca470cfc144a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ta_lib-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9e6e7cb74022ee717229579452a9472cab7b3b125fa31359c2ef9b309164fc82
BLAKE2b-256 checksum
How to use checksums
bbc69ff4384b0ccbc6b30ecc669a933de1131b37ab4bcaac378e13bd66ea72a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ta_lib-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
15c252a2568b7bb75210c9ebdde8f7f40e42e0cac709365629411a00b8553b01
BLAKE2b-256 checksum
How to use checksums
429273e7711150a7ddd3e938cc4ef9237f96d8f67aad162bc3f9c7db31c488c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-macosx_14_0_arm64.whl

Download URL ta_lib-0.8.0-cp314-cp314-macosx_14_0_arm64.whl
Size 1.7 MB
Tags CPython 3.14 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
3d034fbaeab6536b77ead93f6d988ee6fbfca61bc7bb4f483765976bd38304aa
BLAKE2b-256 checksum
How to use checksums
580b2df7755022f385fbeb7237cdb87b4eb50e8fcce44eae880df6b93d34ddb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp314-cp314-macosx_13_0_x86_64.whl

Download URL ta_lib-0.8.0-cp314-cp314-macosx_13_0_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
1073c04c902c8150292689d255f9f9bd676e31e302211927ac37afccfd44827b
BLAKE2b-256 checksum
How to use checksums
9f27dbfadb3ec2a3dbdd683c65c2c283670118a7530ee88951e663460727548b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-win_arm64.whl

Download URL ta_lib-0.8.0-cp313-cp313-win_arm64.whl
Size 970.7 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
c9189279b7b5b38872f1289efdec341ecb53dbeee8286584bda834311b1b9ff9
BLAKE2b-256 checksum
How to use checksums
b83fa5402dbc08c444e35cd7d5275f13e4ea8ce78fbed8d3305e819f629d1881
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-win_amd64.whl

Download URL ta_lib-0.8.0-cp313-cp313-win_amd64.whl
Size 1.2 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
988b580c60b636562e5ce815b09f45825b31f4acd0bc455ca769fa9cf4754921
BLAKE2b-256 checksum
How to use checksums
2d1813e88e8f1d33e61e05ab01c13b6140a2a2e3446100d7beeb58cbb9bc6608
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-win32.whl

Download URL ta_lib-0.8.0-cp313-cp313-win32.whl
Size 993.6 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
ddd4ea5441d17a07eaa9fa3b1376922e0fd4e4d6121c98dae9bbf621c74f45e9
BLAKE2b-256 checksum
How to use checksums
e4daa462d6f82500b0949594d8d6b8bb5f4b0b0ba62512ec94593f99d1f4a1aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL ta_lib-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f83a005dbbe11efbcc9c2555b8dd8c8b5285668dd618249ca5724b4d3ea55601
BLAKE2b-256 checksum
How to use checksums
61527b6adab952f3178bae8c13f74e447644e293b04cccb2c6be575bc21ce4bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL ta_lib-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2dd7634aa161971e27a5ab5f181557bb9c9d666111a1d5c8d8abdd4b11d2137d
BLAKE2b-256 checksum
How to use checksums
b401c9135a1a8580c56a848f282ffe60a2c2a37e163cb5352f6c236a25599e24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ta_lib-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
45fc4c54413d7d7d22f00e3a3365ef7d070a0cd48a9ad2c0aa1321a2f4acefd9
BLAKE2b-256 checksum
How to use checksums
7f8cbecf19ee0397eb994b3200a547c3fe6cc3d4a14c9561457a3631e633110c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ta_lib-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2ddababeb9792ea0be8d42743af92c8e8f1684e3340a71881ceff19c47d5edf4
BLAKE2b-256 checksum
How to use checksums
d469b6e2212b03e035176364694ee121b245a31006ed5233573961789c5036b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-macosx_14_0_arm64.whl

Download URL ta_lib-0.8.0-cp313-cp313-macosx_14_0_arm64.whl
Size 1.7 MB
Tags CPython 3.13 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
53e8f14f116bc98c7d052574898bb3c58818aafbb1a627f82137903f60b21491
BLAKE2b-256 checksum
How to use checksums
15e3526205af9e76dd1b792cc590a833b4cd9a4f7cbb79b4c7b0a787a8182b21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp313-cp313-macosx_13_0_x86_64.whl

Download URL ta_lib-0.8.0-cp313-cp313-macosx_13_0_x86_64.whl
Size 1.8 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
73c38110bf7db53b9bab48943e45485bf8ff87be19c4b02f85fb0e4fd6d90e79
BLAKE2b-256 checksum
How to use checksums
840e7879810e05080681966b549caefd64d803c39149015cc7f366a1d846cc2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-win_arm64.whl

Download URL ta_lib-0.8.0-cp312-cp312-win_arm64.whl
Size 970.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
a716aede94355e09199cb5812ccda198600b741d6fa1604151b7f28f85ce4836
BLAKE2b-256 checksum
How to use checksums
d3dfb64d5df76397da86df534b98813ce83c0fecaa1e9a4cf42b50b89da47a89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-win_amd64.whl

Download URL ta_lib-0.8.0-cp312-cp312-win_amd64.whl
Size 1.2 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4a4416724970d4bc6a99c27b277f2752e46d63105fe2135661594ae559fa63be
BLAKE2b-256 checksum
How to use checksums
652c976234f0056728cad10e6ec293ed0aa171dcf381d98886059a0ba7b86261
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-win32.whl

Download URL ta_lib-0.8.0-cp312-cp312-win32.whl
Size 994.1 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
544c9b17f7713b3b106699697c1a7fdda4ba85d1569f64f3e60bc8b2a0ff62fc
BLAKE2b-256 checksum
How to use checksums
bf80d5eff374b1bdd9611770fbca6d8452fcf07d0dd5462d1a933e3efe117782
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL ta_lib-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ccc4a37f72d41d5f65013dee38bfcc94559332fbc42f691d939b5ca0240c12ee
BLAKE2b-256 checksum
How to use checksums
571662bf4095acc7d7fdb908607c0b656083a0ce0ee339b536db8ebaa1d817c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL ta_lib-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 2.0 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7dae9420d913b606ba88b39b3c4537a6b9934c6445da4c271ae8c3a6db28bbf0
BLAKE2b-256 checksum
How to use checksums
20c2799ae8ebebdf316ebaeb0e818243de881259ea5cd592cef4d44723b738e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ta_lib-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
49e3ff9ddeac3bffa4b23e50a389c21b120a7ca6882502b5e02a45a5bec0c356
BLAKE2b-256 checksum
How to use checksums
d8972d37da151eb6d824efb34d1cd29738e5a92cf275a8dfcb656b0f2935717e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ta_lib-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c6318cfd12aeaf2af498018562d8802a2881ae9e4352a9941702309ddda45910
BLAKE2b-256 checksum
How to use checksums
9ebb25b1b0951c327f6b96592a00293815b916b76866fe1aefbfa5e93770b5a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-macosx_14_0_arm64.whl

Download URL ta_lib-0.8.0-cp312-cp312-macosx_14_0_arm64.whl
Size 1.6 MB
Tags CPython 3.12 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
f0fb8394e83082131c0d43f4cb748c5407c535019e17b96811b594373a30221c
BLAKE2b-256 checksum
How to use checksums
114304bbfb85311ee4dfc98c80e1a6a6665c5d713b827fac124f037412414eb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp312-cp312-macosx_13_0_x86_64.whl

Download URL ta_lib-0.8.0-cp312-cp312-macosx_13_0_x86_64.whl
Size 1.8 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
d39be3c102f1d13d1439ab773d11dbbba1bb387d8cf4ad074f63cbebe3af3908
BLAKE2b-256 checksum
How to use checksums
d3ae1c9a7d95547847ce1d367d951891480c9885efecd68bda419b9d56edccc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-win_arm64.whl

Download URL ta_lib-0.8.0-cp311-cp311-win_arm64.whl
Size 981.7 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
0278515e9989c4a9d6380b2c82e0390f6878723ef71b9dc54aecb147e73be751
BLAKE2b-256 checksum
How to use checksums
446755f4d0211064dfa38df8420fe17e8fb714bc6ff2a5b2f5652e57a45ded46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-win_amd64.whl

Download URL ta_lib-0.8.0-cp311-cp311-win_amd64.whl
Size 1.2 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5f2cdfc8fe3e6245d1fe549cd48fc26d83e970d5730c1340d95d2446c824a247
BLAKE2b-256 checksum
How to use checksums
d19a8e22835c2498629197beda947f636f8dad7618e7a3041886aa219f49ed5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-win32.whl

Download URL ta_lib-0.8.0-cp311-cp311-win32.whl
Size 1.0 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
39881b106d7500e3166c2db0107bafbe4aa9f569b47ba03175ad5a316a6ccd9d
BLAKE2b-256 checksum
How to use checksums
f067bfc425d6fd3e79221df7775feee65925d6cd7da8ff1513c81962465977db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL ta_lib-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c6094fa06edd00ab5da64029d5f27fcdb128cb3b73ab0237ee9014ac3961c25d
BLAKE2b-256 checksum
How to use checksums
924d597873784669f9aa34cf64f6280e70951e88398762f6dd5b373e58728421
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL ta_lib-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.9 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0e3c0b1fcc33f558182cbd4ab183ac1e5d4096fd37be2f9ead684eb805360760
BLAKE2b-256 checksum
How to use checksums
fe259e60e18128d04d9ccb9e05aef648018b8f3665e203afffe5f30964987186
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ta_lib-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cc037c58ca966ad36071c01cb6362042cb5532fb66380b048f645d540906233a
BLAKE2b-256 checksum
How to use checksums
e81e33c2131830a1460250b76dbc8f3cd3cbc92e16027c54ae76fb87e241740e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ta_lib-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.9 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f83fd213631a315200baa27f85fbcf9072512fdbfdc8e3c9e7303a4322bd21d9
BLAKE2b-256 checksum
How to use checksums
41658c2b6f639896dfc3d9600bbf3b5bcb10c1eabe0e3ded983e0f560d44a65f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-macosx_14_0_arm64.whl

Download URL ta_lib-0.8.0-cp311-cp311-macosx_14_0_arm64.whl
Size 1.7 MB
Tags CPython 3.11 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
2e689a40be0e70179087529e4af666754e3eee12165c9c839856d47017cebe8b
BLAKE2b-256 checksum
How to use checksums
5375ba8d003dd25b905ba8b5eccd0eb8396bcaf626cb596fb32870372778ff8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp311-cp311-macosx_13_0_x86_64.whl

Download URL ta_lib-0.8.0-cp311-cp311-macosx_13_0_x86_64.whl
Size 1.8 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
261a2543e90ef75216167ce7f549d1d63fd19a3f840e4fc835345a2bc0423764
BLAKE2b-256 checksum
How to use checksums
1be48852d9f76864a31cc3da9cf8ad8da5e6aeca4be4ca66c7085be157543439
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-win_arm64.whl

Download URL ta_lib-0.8.0-cp310-cp310-win_arm64.whl
Size 980.3 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
771a9d8e445bb74c152b1637d54c15bfdf0d261ccb794b0ca863c516ed54bc89
BLAKE2b-256 checksum
How to use checksums
b7289693530cff52de0f36a71981622c752e115b35e8a03fb67d4a247fe57ed3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-win_amd64.whl

Download URL ta_lib-0.8.0-cp310-cp310-win_amd64.whl
Size 1.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
fa10bdefc7c1d4bb61e8bcd7ea908ab263ed2395fe62b7db7f0745ba64284cd2
BLAKE2b-256 checksum
How to use checksums
1fdb82ac8f6065dab8bde3577760eab60c3aae9d563bd2e0b2019027c65d2ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-win32.whl

Download URL ta_lib-0.8.0-cp310-cp310-win32.whl
Size 1.0 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
24c3dcf10fbdc961f43ab8134571dac94d4ee8087412c7022dfc25c03bd3111f
BLAKE2b-256 checksum
How to use checksums
20f64bfb7f5f52114686cdb6606eb2ab6aa7e93e9e23193171ff74f0b917d151
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL ta_lib-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
33075221cd3cdc1a364fc3fc54519c3ff0ead3b3fe15c796d15eea66fd7e672d
BLAKE2b-256 checksum
How to use checksums
912ee2d14795d04c3f79cfa384ace5709dac80a99bddff2d46f4579594eb3a1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL ta_lib-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.0 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cffdba5aa827bad72759da8f6d8e69e63c45ef6581a748592a7a4cae13eac454
BLAKE2b-256 checksum
How to use checksums
d09f9bc0320e7872396edb4e550aa516b72c258a07eecbf6f82137160012ef13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ta_lib-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c38b30c19e9a42aa79e807940a882095321b30b48fd31fbfbfdfb7e344c6afd3
BLAKE2b-256 checksum
How to use checksums
521fb5ca9d81b3e8d1a1fa3e257b2a293466e680899aa8f207ee3e40eb8732a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ta_lib-0.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.9 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5b561680ffab7b9951a4ad4e28753f7657e851b204873cd4007e492c1b308dca
BLAKE2b-256 checksum
How to use checksums
91e09ed05780c6bc883baf24ab791d8ddb82118a65157067e714e32a5b8eb7c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-macosx_14_0_arm64.whl

Download URL ta_lib-0.8.0-cp310-cp310-macosx_14_0_arm64.whl
Size 1.7 MB
Tags CPython 3.10 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
135fbb01f499000306c5509546c56a245036c9a6b27a8c199bf63ec6e0fef6ce
BLAKE2b-256 checksum
How to use checksums
1020de2744f296ade5862923c99666efc4658c3cfed08265f529cd164d1e2050
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp310-cp310-macosx_13_0_x86_64.whl

Download URL ta_lib-0.8.0-cp310-cp310-macosx_13_0_x86_64.whl
Size 1.8 MB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
90e934e7043dbbbe75c627a50a098a39081ba2e63c3848deb56f61220f144577
BLAKE2b-256 checksum
How to use checksums
2e0039f37f7cccf70533a31157f02e79dae39fc490706cd5e1a5970adbaf700a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-win_arm64.whl

Download URL ta_lib-0.8.0-cp39-cp39-win_arm64.whl
Size 980.0 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
02d2b7b38c1a1214c95e5f90ef79ebecf6b47434e321c9b32eaae5630c56cd53
BLAKE2b-256 checksum
How to use checksums
cebef95f7ca42340086b36012f3549442ba3520eecd1e419c4d051cb8e179b82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-win_amd64.whl

Download URL ta_lib-0.8.0-cp39-cp39-win_amd64.whl
Size 1.2 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4329e779916b3776febe840d3a026e6e5a704b340cc1d42104396951a712db5e
BLAKE2b-256 checksum
How to use checksums
f9f1f8d8f9eee7560ff5c54f226642e25c2a4e8ed4bb08ac89592cdb5d80319c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-win32.whl

Download URL ta_lib-0.8.0-cp39-cp39-win32.whl
Size 1.0 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
2fb4b3e0ea4fffd5e8b7ce26baf476d48573d09ef70210e3d8562f024730cd38
BLAKE2b-256 checksum
How to use checksums
ed87ca16c213c77bb4aafb7a8341cb37de444031d341e0f2c5837dc0ab54a358
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL ta_lib-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
38e4b6a46c98c00d26d8b2c94df194577b8dedca50f7f8f3073a1526fb821e59
BLAKE2b-256 checksum
How to use checksums
63834ae3c4d43298f322c54f44f09842ee98f45c3f121df693e213e0476d42a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL ta_lib-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 2.0 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6bf00f516912f498a64af1bdeee62d22389c7e26753205e1383eca99df619612
BLAKE2b-256 checksum
How to use checksums
43aab41a97519fb7f39e719e3e86e94a03ea7f1fd0b8294ade70bef48ad3962a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ta_lib-0.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4a4a6656f5860a529c4411f23041747225525d9aec6eb692b5a280ff69ee3d93
BLAKE2b-256 checksum
How to use checksums
9efc090bd79a8b58ac4a2babafaf54d090cfa61011a8b59adbf3f7e300f7bac9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ta_lib-0.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.9 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
531c36ba8c614da31c8b01dc46530e770f77492c450935e1a2037e5397ca4cee
BLAKE2b-256 checksum
How to use checksums
062329b716433152b5d5b119af59f61edde1c2fec242b27f1264e2641a1a5cb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-macosx_14_0_arm64.whl

Download URL ta_lib-0.8.0-cp39-cp39-macosx_14_0_arm64.whl
Size 1.7 MB
Tags CPython 3.9 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
5b2e6efbf442cf1f17f5a363cf6ddcae49012d3772e11dc4905396b6b5de7b8d
BLAKE2b-256 checksum
How to use checksums
47d7cbdc0a6f36d2c8bcc6d35aa69a206fd170c0c04045e7df5948c07957489b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / ta_lib-0.8.0-cp39-cp39-macosx_13_0_x86_64.whl

Download URL ta_lib-0.8.0-cp39-cp39-macosx_13_0_x86_64.whl
Size 1.8 MB
Tags CPython 3.9 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
4d8c28fdd3fe5badffa239880b4f75cea634f4fd1b914c745a3eff867e6acf42
BLAKE2b-256 checksum
How to use checksums
3135f1268a7d3db570b172d5adde3236463b01bccda804a6bdd21224de347255
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release history Release notifications | RSS feed

This release

0.8.0 This release

55 release files

0.7.1

55 release files

0.6.8

55 release files

0.6.6

46 release files

0.6.4

1 release file

0.6.3

1 release file

0.6.2

1 release file

0.6.1

1 release file

0.6.0

1 release file

0.5.5

1 release file

0.5.4

1 release file

0.5.3

1 release file

0.5.2

1 release file

0.5.1

1 release file

0.5.0

1 release file

0.4.38

1 release file

0.4.37

1 release file

0.4.36

1 release file

0.4.35

1 release file

0.4.34

1 release file

0.4.33

1 release file

0.4.32

1 release file

0.4.31

1 release file

0.4.30

1 release file

0.4.29

1 release file

0.4.28

1 release file

0.4.27

1 release file

0.4.26

1 release file

0.4.25

1 release file

0.4.24

1 release file

0.4.23

1 release file

0.4.22

1 release file

0.4.21

1 release file

0.4.20

1 release file

0.4.19

1 release file

0.4.18

1 release file

0.4.17

1 release file

0.4.16

1 release file

0.4.15

1 release file

0.4.14

1 release file

0.4.9

2 release files

0.4.8

0.4.7

0.4.6

0.4.5

0.4.4

0.4.3

0.4.2

0.4.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page