Skip to main content

Build Status

I forked the original repo to add support for 3.9. It's on pip. Use pip install newtulipy.

tulipy

Python bindings for Tulip Indicators

Tulipy requires numpy as all inputs and outputs are numpy arrays (dtype=np.float64).

Installation

You can install via pip install newtulipy. If a wheel is not available for your system, you will need to pip install Cython numpy to build from the source distribution. When building from source on Windows, you will need the Microsoft Visual C++ Build Tools installed.

Usage

import numpy as np
import tulipy as ti
ti.TI_VERSION
'0.8.4'
DATA = np.array([81.59, 81.06, 82.87, 83,    83.61,
                 83.15, 82.84, 83.99, 84.55, 84.36,
                 85.53, 86.54, 86.89, 87.77, 87.29])

Information about indicators are exposed as properties:

def print_info(indicator):
    print("Type:", indicator.type)
    print("Full Name:", indicator.full_name)
    print("Inputs:", indicator.inputs)
    print("Options:", indicator.options)
    print("Outputs:", indicator.outputs)
print_info(ti.sqrt)
Type: simple
Full Name: Vector Square Root
Inputs: ['real']
Options: []
Outputs: ['sqrt']

Single outputs are returned directly. Indicators returning multiple outputs use a tuple in the order indicated by the outputs property.

ti.sqrt(DATA)
array([ 9.03271831,  9.00333272,  9.10329611,  9.11043358,  9.14385039,
        9.11866218,  9.1016482 ,  9.16460583,  9.19510739,  9.18477   ,
        9.24824308,  9.30268778,  9.32148057,  9.36856446,  9.34291175])
print_info(ti.sma)
Type: overlay
Full Name: Simple Moving Average
Inputs: ['real']
Options: ['period']
Outputs: ['sma']
ti.sma(DATA, period=5)
array([ 82.426,  82.738,  83.094,  83.318,  83.628,  83.778,  84.254,
        84.994,  85.574,  86.218,  86.804])

Invalid options will throw an InvalidOptionError:

try:
    ti.sma(DATA, period=-5)
except ti.InvalidOptionError:
    print("Invalid Option!")
Invalid Option!
print_info(ti.bbands)
Type: overlay
Full Name: Bollinger Bands
Inputs: ['real']
Options: ['period', 'stddev']
Outputs: ['bbands_lower', 'bbands_middle', 'bbands_upper']
ti.bbands(DATA, period=5, stddev=2)
(array([ 80.53004219,  80.98714192,  82.53334324,  82.47198345,
         82.41775044,  82.43520292,  82.51133078,  83.14261781,
         83.53648779,  83.8703237 ,  85.28887096]),
 array([ 82.426,  82.738,  83.094,  83.318,  83.628,  83.778,  84.254,
         84.994,  85.574,  86.218,  86.804]),
 array([ 84.32195781,  84.48885808,  83.65465676,  84.16401655,
         84.83824956,  85.12079708,  85.99666922,  86.84538219,
         87.61151221,  88.5656763 ,  88.31912904]))

If inputs of differing sizes are provided, they are right-aligned and trimmed from the left:

DATA2 = np.array([83.15, 82.84, 83.99, 84.55, 84.36])
# 'high' trimmed to DATA[-5:] == array([ 85.53,  86.54,  86.89,  87.77,  87.29])
ti.aroonosc(high=DATA, low=DATA2, period=2)
array([  50.,  100.,   50.])

Release files for newtulipy 0.4.6

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

Source distribution (sdist)

Source distribution for newtulipy 0.4.6
File Size Uploaded
newtulipy-0.4.6.tar.gz 39.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for newtulipy 0.4.6
File
newtulipy-0.4.6-pp37-pypy37_pp73-win32.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-32 Details
newtulipy-0.4.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.12+ x86-64 Details
newtulipy-0.4.6-pp37-pypy37_pp73-manylinux1_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.5+ x86-64 Details
newtulipy-0.4.6-pp36-pypy36_pp73-win32.whl PyPy 3.6 PyPy 3.6 7.3 Windows x86-32 Details
newtulipy-0.4.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.12+ x86-64 Details
newtulipy-0.4.6-pp36-pypy36_pp73-manylinux1_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.5+ x86-64 Details
newtulipy-0.4.6-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
newtulipy-0.4.6-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
newtulipy-0.4.6-cp39-cp39-manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
newtulipy-0.4.6-cp39-cp39-manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
newtulipy-0.4.6-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
newtulipy-0.4.6-cp39-cp39-manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
newtulipy-0.4.6-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
newtulipy-0.4.6-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
newtulipy-0.4.6-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
newtulipy-0.4.6-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
newtulipy-0.4.6-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
newtulipy-0.4.6-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
newtulipy-0.4.6-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
newtulipy-0.4.6-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
newtulipy-0.4.6-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
newtulipy-0.4.6-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
newtulipy-0.4.6-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
newtulipy-0.4.6-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
newtulipy-0.4.6-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
newtulipy-0.4.6-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
newtulipy-0.4.6-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
newtulipy-0.4.6-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
newtulipy-0.4.6-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
newtulipy-0.4.6-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details

Total release size: 5.9 MB

Release files / newtulipy-0.4.6.tar.gz

Download URL newtulipy-0.4.6.tar.gz
Size 39.1 kB
Tags Source
SHA-256 checksum
How to use checksums
a7f3019b045a061a463fdf22a398a320b6dc12bd6a03b3b93127966082ed9212
BLAKE2b-256 checksum
How to use checksums
f53f43467bd1b23797ef71dec3180a41e838521fa8a87ce23f44d95396e38514
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-pp37-pypy37_pp73-win32.whl

Download URL newtulipy-0.4.6-pp37-pypy37_pp73-win32.whl
Size 78.4 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-32
SHA-256 checksum
How to use checksums
1356f822603c047df88d9e2b1a5cd3176af20f2a5d6acf91c0a8cf6ef64277ac
BLAKE2b-256 checksum
How to use checksums
48863fa6a561f7a84886b97656f34804ed65594aafd04f177ffc474bc6cca403
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl

Download URL newtulipy-0.4.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Size 85.9 kB
Tags Linux glibc 2.12+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
2da1964d99fd48a41d8498574afce3c380140f9715ef11d05985ce5c281c5bb2
BLAKE2b-256 checksum
How to use checksums
369c1b520f1da89ba81555f13b40d1dc0b1c2d1958464d9890ebe0d0a8514eb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-pp37-pypy37_pp73-manylinux1_x86_64.whl

Download URL newtulipy-0.4.6-pp37-pypy37_pp73-manylinux1_x86_64.whl
Size 85.9 kB
Tags Linux glibc 2.5+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
0d94dbb5ead125d52b53a104b551db89a77a87a0a348950d34c8911c2ba64e7d
BLAKE2b-256 checksum
How to use checksums
cbf6c7f3c46b5fb4285c016c32079477d5ebad7db43cb47135fc912128a576b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-pp36-pypy36_pp73-win32.whl

Download URL newtulipy-0.4.6-pp36-pypy36_pp73-win32.whl
Size 78.3 kB
Tags PyPy 3.6 PyPy 3.6 7.3 Windows x86-32
SHA-256 checksum
How to use checksums
8bfedd73ae0a2e9032015a339f13170d5bf1a38c9b5205d86c0a978f305d3709
BLAKE2b-256 checksum
How to use checksums
1f3ece1da7a3da2e429d25569f15d20f243a7928da0b8768f9f43ca76b92ff71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl

Download URL newtulipy-0.4.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Size 85.9 kB
Tags Linux glibc 2.12+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
420e7994ee0aef1e5258a55f1e21b3a46570df474f94321be9b1d0348a718f80
BLAKE2b-256 checksum
How to use checksums
c5c8390cfc4544143d3a586f6b53926ee3a65402bba58edc008028af8cc1f6f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-pp36-pypy36_pp73-manylinux1_x86_64.whl

Download URL newtulipy-0.4.6-pp36-pypy36_pp73-manylinux1_x86_64.whl
Size 85.9 kB
Tags Linux glibc 2.5+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
d61e961ddffeb26c0d796d452284915ea42aedf314fdf555882da547dfee48d1
BLAKE2b-256 checksum
How to use checksums
7b9dc82f36d0d7487b45376e77d98d2c38a29cbc8a3eace27e31ede12529ed97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp39-cp39-win_amd64.whl

Download URL newtulipy-0.4.6-cp39-cp39-win_amd64.whl
Size 133.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
7ecd6ffc8ed92f617398998061c91679e29457b18f4cdd16cd0108533eb1ff8c
BLAKE2b-256 checksum
How to use checksums
a069de51399cd53d7ef81d2d7b41e122b7316246098d1a44d0fc1352c2311dc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp39-cp39-win32.whl

Download URL newtulipy-0.4.6-cp39-cp39-win32.whl
Size 83.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
4d99d29b6f177a354b8081b31b0a9107e9dc8447447c4619e100c58cdb724030
BLAKE2b-256 checksum
How to use checksums
412c3d15db38945af53c29994ba1dab75f59c205a27650b80c1d428819377a4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp39-cp39-manylinux2010_x86_64.whl

Download URL newtulipy-0.4.6-cp39-cp39-manylinux2010_x86_64.whl
Size 289.6 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
414005a61aca454c29b1d1bb7a9b8e6fbf835816d85caf1168ba0b60281147df
BLAKE2b-256 checksum
How to use checksums
17bbe4c126cdcdd1e3c124b9c52e480fd47e8d4741045b546cf43ddd0e6d0881
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp39-cp39-manylinux2010_i686.whl

Download URL newtulipy-0.4.6-cp39-cp39-manylinux2010_i686.whl
Size 277.3 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
5737fc02384fd9b944974fe681287a844ae5d8e63f01c6c4c3cbf21e12a41690
BLAKE2b-256 checksum
How to use checksums
70c3e6bef9c8819eacab96f61fc05176faedf3698452ede818c8fcbf43529803
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp39-cp39-manylinux1_x86_64.whl

Download URL newtulipy-0.4.6-cp39-cp39-manylinux1_x86_64.whl
Size 289.6 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
dfff3c2241923a9f4e5cb410bd185abc9d68531b44da24e74f2dc53ee6e5afae
BLAKE2b-256 checksum
How to use checksums
21393976813e7cdc3d2471f67116ef3de09fed4e97b198633637c4d8b21edf1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp39-cp39-manylinux1_i686.whl

Download URL newtulipy-0.4.6-cp39-cp39-manylinux1_i686.whl
Size 277.3 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
25e71fba7a4f66b205eef95ff30773caa9174937e86019c73a49c549c58291ec
BLAKE2b-256 checksum
How to use checksums
27d764cc90b7c0dc359e517339d5d7633bfe74b7db4ce145d5a733d6f394a7c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp38-cp38-win_amd64.whl

Download URL newtulipy-0.4.6-cp38-cp38-win_amd64.whl
Size 132.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
67d17597a09ab1daab084f99315c11ec9f6b4291af1be9a95b1eb69004f9e77e
BLAKE2b-256 checksum
How to use checksums
7b3f4f99138c65323e13a446d166ed960b7ec947baa051d6dcda0ad3213627f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp38-cp38-win32.whl

Download URL newtulipy-0.4.6-cp38-cp38-win32.whl
Size 83.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
f544fcf4d7bacb2dee3dd6458b9c5253594b410ec42baf08f46ea24a9e616e6f
BLAKE2b-256 checksum
How to use checksums
6d9c9b27b35e44ab6702a06a26bc4c3dbea1c7f2167946a9dd9b8f6378ea02f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp38-cp38-manylinux2010_x86_64.whl

Download URL newtulipy-0.4.6-cp38-cp38-manylinux2010_x86_64.whl
Size 313.0 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
c5fe1d3b79f90352f75e73e78d8245c934d63cc5428325380f3b021766fc6f55
BLAKE2b-256 checksum
How to use checksums
98a59fb0e0984302f183a75a745fcb269b0d313d8310f46145c5699dee27262e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp38-cp38-manylinux2010_i686.whl

Download URL newtulipy-0.4.6-cp38-cp38-manylinux2010_i686.whl
Size 300.1 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
1a50fee015b5d59bae60cb460c619cea7488b982faaa3b0dd4634096f3cd8249
BLAKE2b-256 checksum
How to use checksums
3889ea88603d38a4d19daf7f62a8369920117b4ef392ac8290b36eb3e0e1d2fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp38-cp38-manylinux1_x86_64.whl

Download URL newtulipy-0.4.6-cp38-cp38-manylinux1_x86_64.whl
Size 313.0 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
4f34fb43388a1e8bac83a31da016b7295290bece3e46f4578f22c9093398deb3
BLAKE2b-256 checksum
How to use checksums
4d26e716980b6fbddba2c17281b9b70450f1e09e52873445fde87afc9609a92a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp38-cp38-manylinux1_i686.whl

Download URL newtulipy-0.4.6-cp38-cp38-manylinux1_i686.whl
Size 300.1 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3143c8ce85b4664cb38da2e198b7553217299595595f6f098cb52787f3175536
BLAKE2b-256 checksum
How to use checksums
22612f6984e2f59f523f5b799bb325759514fb46f8ed57f89a8a473b71d380e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp37-cp37m-win_amd64.whl

Download URL newtulipy-0.4.6-cp37-cp37m-win_amd64.whl
Size 132.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f08d8b1366486ca548933a4ec0279a0cb6e693eb3146553c3b8c5477710f8235
BLAKE2b-256 checksum
How to use checksums
b390122c7bb345411feb98eab924d35be9711eee275c31e2ea80c4fef3d51da8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp37-cp37m-win32.whl

Download URL newtulipy-0.4.6-cp37-cp37m-win32.whl
Size 82.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
43b580780dcc900a8a72cd222c174a023ff40053746a43e7d15f4d9142b0ade6
BLAKE2b-256 checksum
How to use checksums
4695a7e7cf5f57a1752075ec5d0019fffc0870f6aed0f8ebc14ea332fb1e84fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp37-cp37m-manylinux2010_x86_64.whl

Download URL newtulipy-0.4.6-cp37-cp37m-manylinux2010_x86_64.whl
Size 278.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
b15fde3ba0f107455ef3f04806506a4d76b71565d7fdc2c3a1e806ebc6203f4d
BLAKE2b-256 checksum
How to use checksums
9560ce6f7c67e7970c71401190a6c3ccb06a628fa8a60584b19f37c58852ff15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp37-cp37m-manylinux2010_i686.whl

Download URL newtulipy-0.4.6-cp37-cp37m-manylinux2010_i686.whl
Size 267.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
850d374b758f2bbf73f1d5cb24d8755f7cf113910f9d7b104382684ba5b45fa5
BLAKE2b-256 checksum
How to use checksums
acafb22d8dde9b47996f362d0fdb5a88bf05f79b6fa6bd83029d3226556413fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp37-cp37m-manylinux1_x86_64.whl

Download URL newtulipy-0.4.6-cp37-cp37m-manylinux1_x86_64.whl
Size 278.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
da7c121b06c962e8c360bebbfdbb825a1a17e8fee52ea1c5c6a62c70ec31b409
BLAKE2b-256 checksum
How to use checksums
1acd527849fdefaf5044329387d53d5fe7348256b32ee8b17eb743d62f0a8964
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp37-cp37m-manylinux1_i686.whl

Download URL newtulipy-0.4.6-cp37-cp37m-manylinux1_i686.whl
Size 267.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4bb84f22b46f33ca8ca8a426d501d04cb2d9adb2278affd9179a0dc1e5f60c25
BLAKE2b-256 checksum
How to use checksums
8a14a5b5b566a20fa8efa585a7ef36621dcd790ac8ed11819eb69ca93d7100b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp36-cp36m-win_amd64.whl

Download URL newtulipy-0.4.6-cp36-cp36m-win_amd64.whl
Size 132.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
b25d2206ea6efa6738802b95d585b840114569dda4696e9c29bb58ed8fcc9eb4
BLAKE2b-256 checksum
How to use checksums
51b0b6dab040cf5dbb7cea73310f3c29d5ddfde583c14e947e6d9ba7fd09ea81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp36-cp36m-win32.whl

Download URL newtulipy-0.4.6-cp36-cp36m-win32.whl
Size 82.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
70692dd37b52d600620731166db0628a325354b066f3d350d856f090a3de7b52
BLAKE2b-256 checksum
How to use checksums
d6c2bd1ff3deba2e9b3a8541a37aa07ead86bb954bff9733ea659f8e337bc2cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.0

Release files / newtulipy-0.4.6-cp36-cp36m-manylinux2010_x86_64.whl

Download URL newtulipy-0.4.6-cp36-cp36m-manylinux2010_x86_64.whl
Size 276.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
a4dc92d6e9274a5f9061df8dda00b02a7d942bd17fc1910f6bdc9f2a0f68a330
BLAKE2b-256 checksum
How to use checksums
f6636e219c5500fd38ffffc24456bc891c02f5e3a01e0430b095582c55b67454
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp36-cp36m-manylinux2010_i686.whl

Download URL newtulipy-0.4.6-cp36-cp36m-manylinux2010_i686.whl
Size 262.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
73772b546bd94fc59b3724537511fa1b70c13dc571849e7b5b931c009ba748c4
BLAKE2b-256 checksum
How to use checksums
49f176571ab0a71e07a61f9c9a166ade3e4250a1a57b763034470c5278a91114
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp36-cp36m-manylinux1_x86_64.whl

Download URL newtulipy-0.4.6-cp36-cp36m-manylinux1_x86_64.whl
Size 276.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
88f5d7ed493f0472b15f0ce6929667d677872d4e0b7f77a31f12202fa0eecd65
BLAKE2b-256 checksum
How to use checksums
5a7005de2f41f17083b4df73c182e68d0e9e0d373251de8de4fc213fad1c4dbf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release files / newtulipy-0.4.6-cp36-cp36m-manylinux1_i686.whl

Download URL newtulipy-0.4.6-cp36-cp36m-manylinux1_i686.whl
Size 262.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f90aa095efae2fbc730ca848ba2207fabca1afb33c93434fbac1df08dc8c8b0f
BLAKE2b-256 checksum
How to use checksums
170037491d510a38a84e745318ac770e0f66b98e30bcf2114203b8047b612fdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.6

Release history Release notifications | RSS feed

This release

0.4.6 This release

31 release files

0.4.5

31 release files

0.4.4

31 release files

0.4.2

35 release files

0.4.1

47 release files

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