Skip to main content

Financial Technical Analysis Indicator Library. Python bindings for https://github.com/TulipCharts/tulipindicators

Project description

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.])

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

newtulipy-0.4.6.tar.gz (39.1 kB view details)

Uploaded Source

Built Distributions

newtulipy-0.4.6-pp37-pypy37_pp73-win32.whl (78.4 kB view details)

Uploaded PyPy Windows x86

newtulipy-0.4.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl (85.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

newtulipy-0.4.6-pp36-pypy36_pp73-win32.whl (78.3 kB view details)

Uploaded PyPy Windows x86

newtulipy-0.4.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl (85.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

newtulipy-0.4.6-cp39-cp39-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

newtulipy-0.4.6-cp39-cp39-win32.whl (83.1 kB view details)

Uploaded CPython 3.9 Windows x86

newtulipy-0.4.6-cp39-cp39-manylinux2010_x86_64.whl (289.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

newtulipy-0.4.6-cp39-cp39-manylinux2010_i686.whl (277.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

newtulipy-0.4.6-cp39-cp39-manylinux1_x86_64.whl (289.6 kB view details)

Uploaded CPython 3.9

newtulipy-0.4.6-cp39-cp39-manylinux1_i686.whl (277.3 kB view details)

Uploaded CPython 3.9

newtulipy-0.4.6-cp38-cp38-win_amd64.whl (132.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

newtulipy-0.4.6-cp38-cp38-win32.whl (83.4 kB view details)

Uploaded CPython 3.8 Windows x86

newtulipy-0.4.6-cp38-cp38-manylinux2010_x86_64.whl (313.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

newtulipy-0.4.6-cp38-cp38-manylinux2010_i686.whl (300.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

newtulipy-0.4.6-cp38-cp38-manylinux1_x86_64.whl (313.0 kB view details)

Uploaded CPython 3.8

newtulipy-0.4.6-cp38-cp38-manylinux1_i686.whl (300.1 kB view details)

Uploaded CPython 3.8

newtulipy-0.4.6-cp37-cp37m-win_amd64.whl (132.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

newtulipy-0.4.6-cp37-cp37m-win32.whl (82.7 kB view details)

Uploaded CPython 3.7m Windows x86

newtulipy-0.4.6-cp37-cp37m-manylinux2010_x86_64.whl (278.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

newtulipy-0.4.6-cp37-cp37m-manylinux2010_i686.whl (267.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

newtulipy-0.4.6-cp37-cp37m-manylinux1_x86_64.whl (278.9 kB view details)

Uploaded CPython 3.7m

newtulipy-0.4.6-cp37-cp37m-manylinux1_i686.whl (267.5 kB view details)

Uploaded CPython 3.7m

newtulipy-0.4.6-cp36-cp36m-win_amd64.whl (132.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

newtulipy-0.4.6-cp36-cp36m-win32.whl (82.5 kB view details)

Uploaded CPython 3.6m Windows x86

newtulipy-0.4.6-cp36-cp36m-manylinux2010_x86_64.whl (276.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

newtulipy-0.4.6-cp36-cp36m-manylinux2010_i686.whl (262.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

newtulipy-0.4.6-cp36-cp36m-manylinux1_x86_64.whl (276.7 kB view details)

Uploaded CPython 3.6m

newtulipy-0.4.6-cp36-cp36m-manylinux1_i686.whl (262.8 kB view details)

Uploaded CPython 3.6m

File details

Details for the file newtulipy-0.4.6.tar.gz.

File metadata

  • Download URL: newtulipy-0.4.6.tar.gz
  • Upload date:
  • Size: 39.1 kB
  • Tags: Source
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6.tar.gz
Algorithm Hash digest
SHA256 a7f3019b045a061a463fdf22a398a320b6dc12bd6a03b3b93127966082ed9212
MD5 44b3cc75dd1285e9d640860be8ef566c
BLAKE2b-256 f53f43467bd1b23797ef71dec3180a41e838521fa8a87ce23f44d95396e38514

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: newtulipy-0.4.6-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 78.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 1356f822603c047df88d9e2b1a5cd3176af20f2a5d6acf91c0a8cf6ef64277ac
MD5 751f3885c0abaee2ad04f6def67dbdeb
BLAKE2b-256 48863fa6a561f7a84886b97656f34804ed65594aafd04f177ffc474bc6cca403

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2da1964d99fd48a41d8498574afce3c380140f9715ef11d05985ce5c281c5bb2
MD5 6a8d25fa61d6f781ab580ed47a358ffb
BLAKE2b-256 369c1b520f1da89ba81555f13b40d1dc0b1c2d1958464d9890ebe0d0a8514eb3

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: PyPy
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0d94dbb5ead125d52b53a104b551db89a77a87a0a348950d34c8911c2ba64e7d
MD5 8d3ca186e9a489d226797dead0fb84e7
BLAKE2b-256 cbf6c7f3c46b5fb4285c016c32079477d5ebad7db43cb47135fc912128a576b6

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: newtulipy-0.4.6-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 78.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 8bfedd73ae0a2e9032015a339f13170d5bf1a38c9b5205d86c0a978f305d3709
MD5 ebf518331349c1a31ecd33db6dd00ee9
BLAKE2b-256 1f3ece1da7a3da2e429d25569f15d20f243a7928da0b8768f9f43ca76b92ff71

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 420e7994ee0aef1e5258a55f1e21b3a46570df474f94321be9b1d0348a718f80
MD5 f18769e1c33cccc3c245530d339a211e
BLAKE2b-256 c5c8390cfc4544143d3a586f6b53926ee3a65402bba58edc008028af8cc1f6f3

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: PyPy
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d61e961ddffeb26c0d796d452284915ea42aedf314fdf555882da547dfee48d1
MD5 689d5b3d7f8245c75bf68de867635b5f
BLAKE2b-256 7b9dc82f36d0d7487b45376e77d98d2c38a29cbc8a3eace27e31ede12529ed97

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 133.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7ecd6ffc8ed92f617398998061c91679e29457b18f4cdd16cd0108533eb1ff8c
MD5 00d14326d815d78d82115c40ad0a65c0
BLAKE2b-256 a069de51399cd53d7ef81d2d7b41e122b7316246098d1a44d0fc1352c2311dc2

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 83.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4d99d29b6f177a354b8081b31b0a9107e9dc8447447c4619e100c58cdb724030
MD5 eaa636600d8152f0d47519ee997593c1
BLAKE2b-256 412c3d15db38945af53c29994ba1dab75f59c205a27650b80c1d428819377a4c

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 289.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 414005a61aca454c29b1d1bb7a9b8e6fbf835816d85caf1168ba0b60281147df
MD5 cad3d2120c812a5721b3e0c8f589f372
BLAKE2b-256 17bbe4c126cdcdd1e3c124b9c52e480fd47e8d4741045b546cf43ddd0e6d0881

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 277.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5737fc02384fd9b944974fe681287a844ae5d8e63f01c6c4c3cbf21e12a41690
MD5 f68816f2c1e555bda2b7947ed85f9f1a
BLAKE2b-256 70c3e6bef9c8819eacab96f61fc05176faedf3698452ede818c8fcbf43529803

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 289.6 kB
  • Tags: CPython 3.9
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dfff3c2241923a9f4e5cb410bd185abc9d68531b44da24e74f2dc53ee6e5afae
MD5 98570beb1e5d0da6841589336d8092bd
BLAKE2b-256 21393976813e7cdc3d2471f67116ef3de09fed4e97b198633637c4d8b21edf1f

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 277.3 kB
  • Tags: CPython 3.9
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 25e71fba7a4f66b205eef95ff30773caa9174937e86019c73a49c549c58291ec
MD5 43e8ab1d41dea7bb9289a0453e735827
BLAKE2b-256 27d764cc90b7c0dc359e517339d5d7633bfe74b7db4ce145d5a733d6f394a7c6

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 132.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 67d17597a09ab1daab084f99315c11ec9f6b4291af1be9a95b1eb69004f9e77e
MD5 f0dd65309e70e6e9b92c9b2d79fc465d
BLAKE2b-256 7b3f4f99138c65323e13a446d166ed960b7ec947baa051d6dcda0ad3213627f5

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 83.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f544fcf4d7bacb2dee3dd6458b9c5253594b410ec42baf08f46ea24a9e616e6f
MD5 390bb1906350c13840e98a0442fb9d27
BLAKE2b-256 6d9c9b27b35e44ab6702a06a26bc4c3dbea1c7f2167946a9dd9b8f6378ea02f9

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 313.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c5fe1d3b79f90352f75e73e78d8245c934d63cc5428325380f3b021766fc6f55
MD5 aa42bc6a29d282caed0ac7ad717edee6
BLAKE2b-256 98a59fb0e0984302f183a75a745fcb269b0d313d8310f46145c5699dee27262e

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 300.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a50fee015b5d59bae60cb460c619cea7488b982faaa3b0dd4634096f3cd8249
MD5 e77f48e9ea2795f859f15d6fdc6cf222
BLAKE2b-256 3889ea88603d38a4d19daf7f62a8369920117b4ef392ac8290b36eb3e0e1d2fe

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 313.0 kB
  • Tags: CPython 3.8
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4f34fb43388a1e8bac83a31da016b7295290bece3e46f4578f22c9093398deb3
MD5 b83e8bd9ef68fd04207bafc54e97488f
BLAKE2b-256 4d26e716980b6fbddba2c17281b9b70450f1e09e52873445fde87afc9609a92a

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 300.1 kB
  • Tags: CPython 3.8
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3143c8ce85b4664cb38da2e198b7553217299595595f6f098cb52787f3175536
MD5 ea0e94931a71a4d82f1eed52d9dcd771
BLAKE2b-256 22612f6984e2f59f523f5b799bb325759514fb46f8ed57f89a8a473b71d380e4

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 132.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f08d8b1366486ca548933a4ec0279a0cb6e693eb3146553c3b8c5477710f8235
MD5 a084d9d57b089719cf83b578bc8ce95d
BLAKE2b-256 b390122c7bb345411feb98eab924d35be9711eee275c31e2ea80c4fef3d51da8

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp37-cp37m-win32.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 82.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 43b580780dcc900a8a72cd222c174a023ff40053746a43e7d15f4d9142b0ade6
MD5 046b648cd3472ea544e1a57d3e4159a0
BLAKE2b-256 4695a7e7cf5f57a1752075ec5d0019fffc0870f6aed0f8ebc14ea332fb1e84fe

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 278.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b15fde3ba0f107455ef3f04806506a4d76b71565d7fdc2c3a1e806ebc6203f4d
MD5 6eb9d3eb66daec1dd48ece7ed7d54f60
BLAKE2b-256 9560ce6f7c67e7970c71401190a6c3ccb06a628fa8a60584b19f37c58852ff15

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 267.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 850d374b758f2bbf73f1d5cb24d8755f7cf113910f9d7b104382684ba5b45fa5
MD5 42c339ee28c8cc03e632e9d33c225370
BLAKE2b-256 acafb22d8dde9b47996f362d0fdb5a88bf05f79b6fa6bd83029d3226556413fc

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 278.9 kB
  • Tags: CPython 3.7m
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 da7c121b06c962e8c360bebbfdbb825a1a17e8fee52ea1c5c6a62c70ec31b409
MD5 d30e5acf5c8ac387ad665e54453136a1
BLAKE2b-256 1acd527849fdefaf5044329387d53d5fe7348256b32ee8b17eb743d62f0a8964

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 267.5 kB
  • Tags: CPython 3.7m
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bb84f22b46f33ca8ca8a426d501d04cb2d9adb2278affd9179a0dc1e5f60c25
MD5 31b34be001a28f7eb8f28c8c154cb8b7
BLAKE2b-256 8a14a5b5b566a20fa8efa585a7ef36621dcd790ac8ed11819eb69ca93d7100b8

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 132.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b25d2206ea6efa6738802b95d585b840114569dda4696e9c29bb58ed8fcc9eb4
MD5 75fd03026cf8344447ba822b68c53254
BLAKE2b-256 51b0b6dab040cf5dbb7cea73310f3c29d5ddfde583c14e947e6d9ba7fd09ea81

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp36-cp36m-win32.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 82.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 70692dd37b52d600620731166db0628a325354b066f3d350d856f090a3de7b52
MD5 2b5d78bf2c0a67b14f9a2ba6dfa9e440
BLAKE2b-256 d6c2bd1ff3deba2e9b3a8541a37aa07ead86bb954bff9733ea659f8e337bc2cc

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 276.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a4dc92d6e9274a5f9061df8dda00b02a7d942bd17fc1910f6bdc9f2a0f68a330
MD5 f2978d2b9030b5d06490cb5ae9ca9df9
BLAKE2b-256 f6636e219c5500fd38ffffc24456bc891c02f5e3a01e0430b095582c55b67454

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 262.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 73772b546bd94fc59b3724537511fa1b70c13dc571849e7b5b931c009ba748c4
MD5 a1d9013fda8cd887decf7aa97bf6ca7f
BLAKE2b-256 49f176571ab0a71e07a61f9c9a166ade3e4250a1a57b763034470c5278a91114

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 276.7 kB
  • Tags: CPython 3.6m
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 88f5d7ed493f0472b15f0ce6929667d677872d4e0b7f77a31f12202fa0eecd65
MD5 423cff9e7fd0510dc3b980bed83b1caa
BLAKE2b-256 5a7005de2f41f17083b4df73c182e68d0e9e0d373251de8de4fc213fad1c4dbf

See more details on using hashes here.

File details

Details for the file newtulipy-0.4.6-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: newtulipy-0.4.6-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 262.8 kB
  • Tags: CPython 3.6m
  • Uploaded using 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

File hashes

Hashes for newtulipy-0.4.6-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f90aa095efae2fbc730ca848ba2207fabca1afb33c93434fbac1df08dc8c8b0f
MD5 9caaa2c38bf16f7989ee4ab060c5192e
BLAKE2b-256 170037491d510a38a84e745318ac770e0f66b98e30bcf2114203b8047b612fdf

See more details on using hashes here.

Supported by

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