Skip to main content

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

Project description

This is a fork of newtulipy which is a fork of tulipy. Install with pip install newnewtulipy.

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

newnewtulipy-0.4.6.5.tar.gz (34.8 kB view details)

Uploaded Source

Built Distributions

newnewtulipy-0.4.6.5-pp39-pypy39_pp73-win_amd64.whl (87.1 kB view details)

Uploaded PyPy Windows x86-64

newnewtulipy-0.4.6.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (85.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (83.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (78.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

newnewtulipy-0.4.6.5-pp38-pypy38_pp73-win_amd64.whl (88.3 kB view details)

Uploaded PyPy Windows x86-64

newnewtulipy-0.4.6.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (85.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (84.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (78.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

newnewtulipy-0.4.6.5-pp37-pypy37_pp73-win_amd64.whl (88.3 kB view details)

Uploaded PyPy Windows x86-64

newnewtulipy-0.4.6.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (85.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (85.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (78.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

newnewtulipy-0.4.6.5-cp311-cp311-win_amd64.whl (89.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

newnewtulipy-0.4.6.5-cp311-cp311-musllinux_1_1_x86_64.whl (284.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

newnewtulipy-0.4.6.5-cp311-cp311-musllinux_1_1_i686.whl (273.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

newnewtulipy-0.4.6.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (280.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-cp311-cp311-macosx_11_0_arm64.whl (80.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

newnewtulipy-0.4.6.5-cp311-cp311-macosx_10_9_x86_64.whl (95.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

newnewtulipy-0.4.6.5-cp311-cp311-macosx_10_9_universal2.whl (164.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

newnewtulipy-0.4.6.5-cp310-cp310-win_amd64.whl (91.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

newnewtulipy-0.4.6.5-cp310-cp310-musllinux_1_1_x86_64.whl (285.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

newnewtulipy-0.4.6.5-cp310-cp310-musllinux_1_1_i686.whl (274.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

newnewtulipy-0.4.6.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (280.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-cp310-cp310-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

newnewtulipy-0.4.6.5-cp310-cp310-macosx_10_9_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

newnewtulipy-0.4.6.5-cp310-cp310-macosx_10_9_universal2.whl (166.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

newnewtulipy-0.4.6.5-cp39-cp39-win_amd64.whl (92.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

newnewtulipy-0.4.6.5-cp39-cp39-musllinux_1_1_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

newnewtulipy-0.4.6.5-cp39-cp39-musllinux_1_1_i686.whl (281.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

newnewtulipy-0.4.6.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (282.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-cp39-cp39-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

newnewtulipy-0.4.6.5-cp39-cp39-macosx_10_9_x86_64.whl (97.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

newnewtulipy-0.4.6.5-cp39-cp39-macosx_10_9_universal2.whl (168.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

newnewtulipy-0.4.6.5-cp38-cp38-win_amd64.whl (92.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

newnewtulipy-0.4.6.5-cp38-cp38-musllinux_1_1_x86_64.whl (314.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

newnewtulipy-0.4.6.5-cp38-cp38-musllinux_1_1_i686.whl (305.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

newnewtulipy-0.4.6.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (296.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (289.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-cp38-cp38-macosx_11_0_arm64.whl (77.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

newnewtulipy-0.4.6.5-cp38-cp38-macosx_10_9_x86_64.whl (91.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

newnewtulipy-0.4.6.5-cp38-cp38-macosx_10_9_universal2.whl (157.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

newnewtulipy-0.4.6.5-cp37-cp37m-win_amd64.whl (92.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

newnewtulipy-0.4.6.5-cp37-cp37m-musllinux_1_1_x86_64.whl (280.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

newnewtulipy-0.4.6.5-cp37-cp37m-musllinux_1_1_i686.whl (273.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

newnewtulipy-0.4.6.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

newnewtulipy-0.4.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (272.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

newnewtulipy-0.4.6.5-cp37-cp37m-macosx_10_9_x86_64.whl (90.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file newnewtulipy-0.4.6.5.tar.gz.

File metadata

  • Download URL: newnewtulipy-0.4.6.5.tar.gz
  • Upload date:
  • Size: 34.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for newnewtulipy-0.4.6.5.tar.gz
Algorithm Hash digest
SHA256 3496b31385b67fe03e369acf9b1ca2b189d20bba68e4e09b10c0244062b157e2
MD5 a7da7cc44606e4ff601ad881f2f8099e
BLAKE2b-256 831d32edf3fad7f051e4b69aa1d71899b1fd789ed9526fcba51b1b285695990a

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6bcded9b7d216dad4a147844256f08f5a05e5006eb80e11a60153f08b59d2d04
MD5 114b1ceb2b7deb0fd85888b4dd35cb7f
BLAKE2b-256 93ea86d3af0ca588700dc0a2ad5881a234b873479a7739dc4cd6c09f95fcf9ee

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed419a25d65629bd5dcea3c1a800519488ce2e5dd643fa911e0706ba558a23ea
MD5 8ccd316e09553b418c3b4be4c52e103d
BLAKE2b-256 fec11922be9cb33192a7dc3a0db62e2c10769fcd32f5a6c26f12e49b73225f5f

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0571ab7e4be552671c7249f9c5dae56cde40be7d80295ab143071656fc89020
MD5 35ae4bcc25eb773f5b8e8ce2616a5af2
BLAKE2b-256 fb58704a95ff76b13c719402c8cd1c89dee6bb57a8c4b7fcbb7beb9d49fe6ccd

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18b7b779da51b55ad0ff0416ec6d94d9fcea57e5ae9a6aadde3cd4dbe21bfc75
MD5 4915653398be002ea6f32ea2feecd8a9
BLAKE2b-256 b655caeb2e54d7091211d0683d6c2c4cc9702d34143d15047f58d5edcf2e0c97

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e3ce2be79b255a2973f7cbd68a91f8262e85972cd4b7ec6466ab410496f8ae3e
MD5 06a026382d8e73487f7a6cb3edcd9819
BLAKE2b-256 422fb926d313b4ee59c4eddf079a738252ae7fc13eccc31cf9eab1e4d8f1cf37

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41afbe696db36626cc2456412d9beb23058b5213d04ba5c2c71df28f475a2f54
MD5 0ae951826eedf6b27a115efd7f7d20f0
BLAKE2b-256 b0d625263751d73a2a34ab72e7eea7926c903f1d7becc9f5ee38020ff65592b7

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65f767416a3790560efd44453ccff2f702647353e26763b7f13e0861f448a4ef
MD5 2352b0290f639d8b3076af1672df1a2f
BLAKE2b-256 a0a4aff62882dbada80021ef2136cb648d418aec261c682331902466e94ab7ac

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76712e5413e81a608f25a2b008f6df6ae6100686821ae864f7b87a1215d56fcd
MD5 d710837f8295feea21a7c6352da91d45
BLAKE2b-256 e6f83e55184fca129f8776adbb358b911dc2f2d499af6eb1696ff8ab5c44c4c5

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cdd891830bc444d17879756aeffa91051880c1bbe1e6470d6e70fefdd4cde009
MD5 c5efffea147dc5023c299d4267c07fb8
BLAKE2b-256 2afdb512aea282924107d7b2dec34c4b2d5edefe38a2905305de18e81305fd3b

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0abb77121895314770c8601bea3c3119772a0630da528ad5be0429b536b330b6
MD5 190c5aa7395f8ec94cd87adc9ad7e12a
BLAKE2b-256 011d806a7894bfef6063c082b9a7258b79bd4a1f8d934e93b934650fc5338735

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 022decb6390fe8f51bef892ef8f39f7eea1c9692b811e7b62804ba836b0c6a63
MD5 73d6e92a8e06f3cf65d14828c77d6a57
BLAKE2b-256 aab1d64ca73a09c9b60e9bd0e5bb161ccfdd746ce220ab21b573ed92ba129932

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8132b494136ffe7cba34a96a47d6884c94666eb66e98830e3b0f43060fdef2e7
MD5 947049e4b188c7aa57c645dad2ff450d
BLAKE2b-256 79d2cc7989f48f13f62ae446862ac384ead832fa02d43353ef8cb554f6cb00c1

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f2ca4aeca290d2858802acc3749a3ec1156aadad3d27d88c35fa75b2135e2bb8
MD5 ecc0269c3005e1ba2aa3ad78e9ec5455
BLAKE2b-256 05e17982b00b1970e34e1330ae1d53f434fe10b284414f356f74c784628b403c

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ac64bb19ea376226e332815fa088e8cdbce1ea300fb55ca8d6034092ddbdfa2
MD5 f424a8d2e44d0f0393e2b9264eb1fd01
BLAKE2b-256 e7aaf64c72c8cb4db69bd33c8c1111b46643c2d91fe1cc21a4f8ad7963def890

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e4cd12eecca3b2b663c4bcd29d79416395620b87ba46753c147e8168b44f440c
MD5 d71efeee3c877c148d42657869d309c2
BLAKE2b-256 ffd8300b3aa975f778209bf0e34f8f7170b1043c5455756b5c94dbbaf8ccc789

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa69845ee028341bb3a32f3a5719b8ce57f22e87c92e85eface0272580fa105d
MD5 32de5fc63f3c1d64e9d5925638458d3f
BLAKE2b-256 75584addb4510b83836a5f95bd0cf6c8ddf9ca07c085f7a807d74a6bcc919987

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc2a4ccf99293fb99070471733fd6b99ac1713f9d5d814508b6b3ae933366ed2
MD5 77cf979c64ceb28691894f0f729e4a39
BLAKE2b-256 ff9996cbcc743842a27594f76af567fdad40a75fa98f18d6de24cca5c5b9727d

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aefffc5661f53e631670664db308001e298570a52c0e9dce5c5aedcc66c861fd
MD5 d1b237504d95d828bb3865e9da58ffb8
BLAKE2b-256 0af79a743cea73c9f0260123ca92dfcac918c0d42871c0d83649a13a180074a0

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c38a05c104aa3a20a1b5504954789be7326eea9401f2314544b2e9ca610fcb68
MD5 a894de2ab195701f5232300126497549
BLAKE2b-256 0369d9bc5f71d060652e22d7ceef66954be6408b849851da487d314637c5d4f6

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0cf5928e4cee74628b016c9a545aca1bda13c8261c39dacc0ee3f5775a1ab903
MD5 4855eaa9a71c573d5ba8e9874dc6882f
BLAKE2b-256 5ef5258bbeea977ff668d4f384f7de00461ad8e189a2dd3db764029ac4fe222b

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 793862a8bb2629c03615dfd35ad36985e9db76d3047d58c9a07c0cdfdabb1a5b
MD5 bc08b6e0bf7bd2d12f807c320b933d4d
BLAKE2b-256 a37962955abb984d751b9cb6c3cd6b66697e8f23f64660eeb2afafa35e31d8e9

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 65ba423dec188dd58898d926e61e5ad27ab8264e5adcc96f8dee215f60e85ed9
MD5 49c9501a9daf68af87cc06ba62b60afe
BLAKE2b-256 2eca940626aee4706f50cd96b486e888dc4dce7f29d8b2af8edcd31466813f21

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a1c2ef97937740304850fef60241d0e28e8b6f09565028cee6a66eac82b896ba
MD5 127c28f6e68aa992b017cc0d08f41e85
BLAKE2b-256 6e3be0d902152489b302577e7270e8e0354da61aeebbbc33e7c5cb6231c0a15f

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4880f31d4251e653133b8ff757ae99f51c3d640837f637f5d08858a23297fb3
MD5 7dd84a206689dc6fb97a51966a2d52e3
BLAKE2b-256 d0bff046d16fd1d2b2bff4d7cbc5cf8f52b6840ed022ea1ea65e7dade9f0d7cf

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 022bb17002a684d788e84d7b9cbc229850a32ee28db235ac4661dc5feacdb70e
MD5 4d6545bda4431af8408ac8e6a191453f
BLAKE2b-256 b21e6fcfb33b11e5a7c99c3ab218351635b59ba5407cabf887d5c4963ee404d3

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 336566942c67f474854227ddc26ea8b3061a9774df1c7d89e478eea246a049f4
MD5 e38ba5a57c7ea551b5f07fef61ccfffb
BLAKE2b-256 41a73f23d108ee956fdbef4f8188a57aac1833dc13c40dea41d1e392d9463e72

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e1a83f8433bd939e6674dfd2c6bd3fafe6bec5f337e0809789a912ec067f12e
MD5 850722e8b9965705448afc2e9d3f6fde
BLAKE2b-256 9349e277767dc2304a574b0a2a9f6d70dad18e19bb2a5195ae6ca578617231ea

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c91c696dc4b05ec68c89db0b271a5195e6f2fa2ae6e1b1f7f3860f0fb7a5361d
MD5 f1123f456272dc85b0810d1e68104d05
BLAKE2b-256 28cc2185d778e05dd19c67e251b3cc7d0f9d3b31aaf9a897b2226ca5836627e8

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0852f6c4c3da902f116b0308ae4813be88cf0ba1395f0d87eff6224b8a57c6a4
MD5 6ca9fe049663754ae727c4f6864e0478
BLAKE2b-256 ff2bdb5950a675d9d8f57e04d76580d54de99cdb6640e1fc67881794ffb7d095

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33277e7a6fc1538008fa363cbc839d6bd78f3d8a7c666471a17ff7d127a0191f
MD5 9fb431c26c407a35ed0999f7bd70218a
BLAKE2b-256 b5fc7a946c5665792c54f251400ee956a2eee3102da7f137a5744787dbfeeb85

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1759691aa96b1823552231e77c072405a9d8db9b27fb2846792a2c120ff27017
MD5 a8795767350ba7630278030e71ef38ef
BLAKE2b-256 68f732760089838b988e21453c72f12dbfc347975167a30b46059d2970c773eb

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 490938073fa67b26d22836541d26a3ff4dad22641dd02203ed68054873d7609b
MD5 8d06c94918e9d3a7f59c4556dd9ec165
BLAKE2b-256 237da47b774a20baed825a551dc62d482c93d373ad64f60e737a0026ae5ac5a2

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5ecf6a76e5aca3f445a1e3386bbd74dc212d88ae25bf42f438041b72133359d
MD5 815f372701f9306f1eab85b2dec1a430
BLAKE2b-256 1777af555dd3495b96478713da98a3ea81dd981ef80b96dc84b1c8ee305a531d

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5070d5a2d6178e9b3ac6953c08c07357fed9ad36dbd7e827a23ae36dfca8076c
MD5 6ec7e45f2297daf6eca78f177e1ddb21
BLAKE2b-256 8de5f59f4dbfeb7985d344f7be5f1e9543331c1c0f3c508558e5527a9f3a7bfa

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d55105f0082b1d7b11bf428b06d6424392545a7a7bcb9b57bf2f3c9147117c9b
MD5 3d150dd5330ed6ecb1df4e1fb701454a
BLAKE2b-256 7a83e796207e2737b28dcc7b6e0c76851e69588f2728ad815150c7e3f2b4d578

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c9bab4d645eb1016c8a04cb236967cb6b087ec6f8e1619a15f53d9930736a1d0
MD5 5956c6007667eb9282614e05bda64b97
BLAKE2b-256 72f03cc2225d52e6725b032929820a3979a029efaaea53497a3509614cb3b137

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 493e343d04d57dc6a554a5172f42e5937f922a97d49390fd0282a623d392ef7b
MD5 c57aee70435b8bd8be12c45b9c9a6f7d
BLAKE2b-256 c9ac9668a141cec03b19b3f1efef9c9e0f40881ef67aa798878d0ceaf5a40ba9

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56a2e2c64c79ed1f332c7eca87c1572c6d1856906d3541115eb8ef2975101c0a
MD5 51608e655ff38c85674e78d8bf1137fe
BLAKE2b-256 097e9688ab901bf9cf99e2fdd1e8fb0d6562c42b9505531b5a7c0032d52a84d3

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 576f8ea0fe9e72c584c880c42b350f8d42cae3984ec18a1a832ef3ab3b2ffbd4
MD5 d02fe7f60d5ca790b5f9ab461234b550
BLAKE2b-256 3399dcdf71bcb54f78a58976d6db41bea3b7d677212b78fe0060099231f88229

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f1db752be296020fa55f0b461247c37950b7318aa4fbfeeb109d97c24026333
MD5 690ecdc9c769cb0a37b4ae15cd79c808
BLAKE2b-256 2d42e74430e2a0d14a43ba6f8a5a755cf6490cfcfa7e6d7bd272b37f7e99ce88

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaf42999d2ab41ff3a2688a81c2dd0307a901afaa14e5e618427aee751d70909
MD5 124131fc094eaf030adbd1e7695bb427
BLAKE2b-256 f94f6b27c5b2c03b7d62372142c651d1ea4c96c6eab69950364d405a826e2c82

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7026ff612f8743ead4b029205116efd72ed38240e4e3c342ba564aef36502e68
MD5 43a5f8f7b0126f82a5582a2973ffed58
BLAKE2b-256 45fc2bc3ec7d4a175afe19f572ea008e37c930c027dd97158872259d0ded33ae

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe6d3162deb71d6cf43d9780d03c94c73ef6b4e6a583942e7ed9ff1017a53f88
MD5 cc0946091e3ddb61fe41581a83d27ec0
BLAKE2b-256 549cb4ae703aa3b4e5bf7c6099a4f34897c7470ae4ba0c472fde6b014ce58a1a

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5984fd20475b868ed933ea3ab29d4c270e20a0e1f3dddcab7070c8d231560495
MD5 c15ddc710b662c8b0597f5f6bd472909
BLAKE2b-256 756bf793ac854045b1b594db6de8b50e877f6fa917c8440d3e70970bec699f30

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 16db777e8ef8c5fa74d713cb1a5cf684c3c5203bb6331d0dfc1fa112163bbf1e
MD5 a29a5133b656cd8569555fa543d946f8
BLAKE2b-256 78c957bb8c3848655b5b3d7ee19622162854e05c11b1be0d47a68144e075e02d

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 02e0547bec9c121cc597eeecfbc3a75e084cf57842cb242bd01e7f5a6c6105ea
MD5 541f500368176c3079fd07d08cac9c1e
BLAKE2b-256 60d7c3ee17ec6d604a3cb375d633cff1f4f26d5bbfcfa7373bc685b6c50304f9

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ff6c70f84f84e346b944be7df21dca5cdaf957b1163ca8abcd2b10805b3c27ec
MD5 7d68c602c46a34db577bb56c45f3fe6f
BLAKE2b-256 0bba6002866cdb33f0c662097e179de6d2d01c155b4536c133a05cc503b7b1e5

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c042c2594e7882c0b12173ee1f831a1c7cd0f40a3894b53c748a179a02b8587
MD5 dbf11ebca144476779a65f72845b85e4
BLAKE2b-256 324949a7fdcc895dd1ece6c416a6334ad46e1728760170d69d6d02aebb80c7d4

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00a3f14e8c43c2c71306472947c80b76a30f0e625288cd55072fb8be13ef9fd5
MD5 4c42e89681703f3bcf990bcd380d17f1
BLAKE2b-256 c85619cd84e816329b97d22583f8245e7e747e535255d70e4dbfe58824222f90

See more details on using hashes here.

File details

Details for the file newnewtulipy-0.4.6.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for newnewtulipy-0.4.6.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4827ddb3d4fa753fb8dcd14adf22b105dac769c4a5168309ff0c9943c7eeab14
MD5 88b07917fd8d17469da6c67a44bfb3bb
BLAKE2b-256 dd8fd419da3177afd1731970fd6cd7ef13e523d36fe5cd5ad4253f222bd4e985

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