Skip to main content

Logo

PyPI version downloads test deploy docs codecov DOI Streamlit App

tda-mapper

A simple and efficient Python implementation of Mapper algorithm for Topological Data Analysis

The Mapper algorithm is a well-known technique in the field of topological data analysis that allows data to be represented as a graph. Mapper is used in various fields such as machine learning, data mining, and social sciences, due to its ability to preserve topological features of the underlying space, providing a visual representation that facilitates exploration and interpretation. For an in-depth coverage of Mapper you can read the original paper.

This library contains an implementation of Mapper, where the construction of open covers is based on vp-trees for improved performance and scalability. The details about this methodology are contained in our preprint.

Step 1 Step 2 Step 3 Step 4
Step 1 Step 2 Step 3 Step 2
Chose lens Cover image Run clustering Build graph

Example

Here you can find an example to use to kickstart your analysis. In this toy-example we use a two-dimensional dataset of two concentric circles. The Mapper graph is a topological summary of the whole point cloud.

import numpy as np

from sklearn.datasets import make_circles
from sklearn.decomposition import PCA
from sklearn.cluster import DBSCAN

from tdamapper.core import MapperAlgorithm
from tdamapper.cover import CubicalCover
from tdamapper.plot import MapperLayoutInteractive

X, y = make_circles(                # load a labelled dataset
    n_samples=5000,
    noise=0.05,
    factor=0.3,
    random_state=42)
lens = PCA(2).fit_transform(X)

mapper_algo = MapperAlgorithm(
    cover=CubicalCover(
        n_intervals=10,
        overlap_frac=0.3),
    clustering=DBSCAN())
mapper_graph = mapper_algo.fit_transform(X, lens)

mapper_plot = MapperLayoutInteractive(
    mapper_graph,
    colors=y,                       # color according to categorical values
    cmap='jet',                     # Jet colormap, for classes
    agg=np.nanmean,                 # aggregate on nodes according to mean
    dim=2,
    iterations=60,
    seed=42,
    width=600,
    height=600)

fig_mean = mapper_plot.plot()
fig_mean.show(config={'scrollZoom': True})

mapper_plot.update(                 # reuse the plot with the same positions
    colors=y,
    cmap='viridis',                 # viridis colormap, for ranges
    agg=np.nanstd,                  # aggregate on nodes according to std
)

fig_std = mapper_plot.plot()
fig_std.show(config={'scrollZoom': True})
Dataset Mapper graph (average) Mapper graph (deviation)
Dataset Mapper graph (average) Mapper graph (standard deviation)

More examples can be found in the documentation.

Demo App

You can also run a demo app locally by running

pip install -r app/requirements.txt
streamlit run app/streamlit_app.py

Citations

If you want to use tda-mapper in your work or research, you can cite the archive uploaded on Zenodo, pointing to the specific version of the software used in your work.

If you want to cite the methodology on which tda-mapper is based, you can use the preprint.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tda_mapper-0.7.1.tar.gz (172.6 kB view details)

Uploaded Source

Built Distributions

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

tda_mapper-0.7.1-pp310-pypy310_pp73-win_amd64.whl (238.1 kB view details)

Uploaded PyPyWindows x86-64

tda_mapper-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (248.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

tda_mapper-0.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (231.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tda_mapper-0.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (234.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

tda_mapper-0.7.1-pp39-pypy39_pp73-win_amd64.whl (238.0 kB view details)

Uploaded PyPyWindows x86-64

tda_mapper-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (248.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

tda_mapper-0.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (231.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tda_mapper-0.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (233.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

tda_mapper-0.7.1-pp38-pypy38_pp73-win_amd64.whl (237.9 kB view details)

Uploaded PyPyWindows x86-64

tda_mapper-0.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (248.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

tda_mapper-0.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (230.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tda_mapper-0.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (232.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

tda_mapper-0.7.1-pp37-pypy37_pp73-win_amd64.whl (237.9 kB view details)

Uploaded PyPyWindows x86-64

tda_mapper-0.7.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (248.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

tda_mapper-0.7.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (232.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

tda_mapper-0.7.1-cp312-cp312-win_amd64.whl (243.7 kB view details)

Uploaded CPython 3.12Windows x86-64

tda_mapper-0.7.1-cp312-cp312-win32.whl (231.8 kB view details)

Uploaded CPython 3.12Windows x86

tda_mapper-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (642.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tda_mapper-0.7.1-cp312-cp312-musllinux_1_2_i686.whl (623.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

tda_mapper-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (616.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (597.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

tda_mapper-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (244.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tda_mapper-0.7.1-cp312-cp312-macosx_10_9_x86_64.whl (249.6 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

tda_mapper-0.7.1-cp311-cp311-win_amd64.whl (242.8 kB view details)

Uploaded CPython 3.11Windows x86-64

tda_mapper-0.7.1-cp311-cp311-win32.whl (230.9 kB view details)

Uploaded CPython 3.11Windows x86

tda_mapper-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (647.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tda_mapper-0.7.1-cp311-cp311-musllinux_1_2_i686.whl (628.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

tda_mapper-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (607.1 kB view details)

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

tda_mapper-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (243.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tda_mapper-0.7.1-cp311-cp311-macosx_10_9_x86_64.whl (247.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tda_mapper-0.7.1-cp310-cp310-win_amd64.whl (242.7 kB view details)

Uploaded CPython 3.10Windows x86-64

tda_mapper-0.7.1-cp310-cp310-win32.whl (231.2 kB view details)

Uploaded CPython 3.10Windows x86

tda_mapper-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (613.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tda_mapper-0.7.1-cp310-cp310-musllinux_1_2_i686.whl (598.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

tda_mapper-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (590.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (575.4 kB view details)

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

tda_mapper-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (243.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tda_mapper-0.7.1-cp310-cp310-macosx_10_9_x86_64.whl (247.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

tda_mapper-0.7.1-cp39-cp39-win_amd64.whl (243.2 kB view details)

Uploaded CPython 3.9Windows x86-64

tda_mapper-0.7.1-cp39-cp39-win32.whl (231.7 kB view details)

Uploaded CPython 3.9Windows x86

tda_mapper-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl (616.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tda_mapper-0.7.1-cp39-cp39-musllinux_1_2_i686.whl (601.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

tda_mapper-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (593.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (578.0 kB view details)

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

tda_mapper-0.7.1-cp39-cp39-macosx_11_0_arm64.whl (243.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tda_mapper-0.7.1-cp39-cp39-macosx_10_9_x86_64.whl (248.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

tda_mapper-0.7.1-cp38-cp38-win_amd64.whl (243.3 kB view details)

Uploaded CPython 3.8Windows x86-64

tda_mapper-0.7.1-cp38-cp38-win32.whl (231.7 kB view details)

Uploaded CPython 3.8Windows x86

tda_mapper-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl (625.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

tda_mapper-0.7.1-cp38-cp38-musllinux_1_2_i686.whl (607.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

tda_mapper-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (584.8 kB view details)

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

tda_mapper-0.7.1-cp38-cp38-macosx_11_0_arm64.whl (243.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

tda_mapper-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl (248.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

tda_mapper-0.7.1-cp37-cp37m-win_amd64.whl (243.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

tda_mapper-0.7.1-cp37-cp37m-win32.whl (231.5 kB view details)

Uploaded CPython 3.7mWindows x86

tda_mapper-0.7.1-cp37-cp37m-musllinux_1_2_x86_64.whl (595.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

tda_mapper-0.7.1-cp37-cp37m-musllinux_1_2_i686.whl (577.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

tda_mapper-0.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

tda_mapper-0.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (552.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

tda_mapper-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl (247.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file tda_mapper-0.7.1.tar.gz.

File metadata

  • Download URL: tda_mapper-0.7.1.tar.gz
  • Upload date:
  • Size: 172.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1.tar.gz
Algorithm Hash digest
SHA256 564513f18426c09672e9079571511bda8691fe7b2dd819d1995648ff467bf2f4
MD5 c58179aa9e7c013e34b1991630dc1150
BLAKE2b-256 c4988a9023f7eb309869bf42ef7c44fae660d4189582421a95a98cc52e5d3de3

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d83644dbbc0c055048904f9bbe43c3df2d0c9683720b32d0a816a2abe0146c0e
MD5 de9d961fed1a2a5d8599efb437947759
BLAKE2b-256 69bb4c6db9bc1c177a8650349857ac1b7c5a8e729c95e7318d9967b3b1d7c068

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2c242310969ece36d96d3d0b31d229ad8ab35192f7c571f573ea94873b1c14c
MD5 fb183382307e8095024e5aa33d75f4ff
BLAKE2b-256 7883154299585523da14bd972bd76c5fa09a770d9d455bcdd60d2a4cbce4fef3

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a109c124169a86ca87cc279cb61315921a6936fb1b48de6db07178877feb45aa
MD5 68342318481db7dd5644fff2813cf266
BLAKE2b-256 250276ef4b29784b2684989e160b40ca50c8f91638c0e127992b8ec682d8976e

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b02a60d665c50a53f655bd8d92696ab84cb667bbdbd8364e6a388b4af6f89aa7
MD5 3f59a07814bb0d875a00b330c1f233a7
BLAKE2b-256 235264cd4ddc1241d2955fc007b57a95764e662713689de8d476a5d6c9ecb06d

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 25a80adba1b47c694e7171cec967b06c1f15f77bc2e2b39d93ffb4dbcdcc004a
MD5 7159a107adab36d449fd9b1e5dc0b599
BLAKE2b-256 26ca8aa1e6bc8365b577bf1270c7a38d48a556edd2b0f93e71306ed14b2b71a8

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 95e67dd3c8a30b675c46d87e101aa42b3fb52fb10c1e36b798ab0d5b5ad64231
MD5 f8b92e2cf210f718e79f75fb753f8f83
BLAKE2b-256 b7f1977f09f0d6c8b7bca4b8bbcfd4c8b18c5c758788cc370c34e852d8c321b2

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05d4fd84d3101192dfc3614eb6ca70b171b4ebb1b13cbfcc3721ce40a627ff1d
MD5 951d50f498b8c51e4fc02de841719c0e
BLAKE2b-256 df9fcaa89a69c5bb95c37f835cc787d97e7320bea89c26cd0150301ca61264bc

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df01b57549530b4e0682483afdf7ca9c94fc08f48b6c636040ef58abe634e9d0
MD5 15e9b5bb75f6a2fbc8a6010d1631ee11
BLAKE2b-256 219b231bf0a91fc1a489e0ce5dd5299d250c97778e7c25e5cb0b19733b2096f1

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f99ccb7cc16da0a7a7a336f87c03c36d65f85ed7dc78b861be72575f6519c5e6
MD5 818a3b6260fd64ffbf42701c02343866
BLAKE2b-256 9aaff17d54b93dc92e29775bf9a1a98efa8d66029984ee808ede50d13c851cfb

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b8cd4b488db3b7f400487ea90fd7d5c236d54bb1168d7ea5cb778adc47a5b7e9
MD5 28114fa7a84cf45f7699c88535f52b9c
BLAKE2b-256 927b2cb5b69d452ea2ad65f1b676d2abde9766b546db36f72387c97eb0ef8a71

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5332493eeadc4e0deecb8a72239a609a87798e87accb5382dabde8d22dbcf6ec
MD5 33e7b71adfae97f0776fc142a585f983
BLAKE2b-256 0cc83e6860b46639d993ea30c3c92c30d355c796a5b3a8aaaa59b6e0b6b2264b

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4113c55bf97b90c708c1c9ea48ceeed9e9a83095509b2051e29f00f5fa8a5670
MD5 eada9ef8dff1cc5843d87214a9706114
BLAKE2b-256 1413eddaf283b272164dedfca6f5f0d20b6d8aeb66771c5f088e388d5a746cb2

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07237ca35194b71ce9372d018e0e6e9a5b092a7827eaa7af50d79943035e6725
MD5 fc6bf7ffea4bcb58461ec91ca5760f0a
BLAKE2b-256 e42e356c1fca0028c06a140c878b9bd3d98fbaa4b4a0a1b443a83ef1acb2945c

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fcea8732123acaf28fd63e6932fe2d4661cc4837e19ab52fbabba7d4a3798fe
MD5 f9643d8d21ad341aac842a4f4b07d373
BLAKE2b-256 13243697fcce4633727bf067d09003d37ec86a85c4706a228b6a23f0cdac57c8

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a9fa40abf2bf207923986a0a590aff61ac0b58504e1937aaa5997f3d1390797
MD5 7dcc189595215520094a33bf6df1cba1
BLAKE2b-256 be131494e951c200a57278ab670361b433215b50da8e21fad3f002a4a5448ba2

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 91ed7a033cbfa526841a716fa39953dae28dfcd6167df4e2a2959934461c19ea
MD5 b73ffbf47f85a1deafdd6e9dcb9504df
BLAKE2b-256 4fe252a134513253fac55b51314e9802a0a1151369dacc5b8a410d5d1386dfa2

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30e6ee3a75c8f371e8e2645613c0b9d65a1727ab6e66294ade2c1cef1089367f
MD5 7fe98500ba1804d5ae088d2dfd6b9ff3
BLAKE2b-256 bced29531f3490144794fd659947cba03c6db23c9c250e1acb948d32f7f74ca6

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4cab50f8dcae672493664046d2d018ea7eb0b9a4e11c746f424f610d9a41fbdc
MD5 9a9ec54987216de6e2dc08ab40d53cb8
BLAKE2b-256 6c3eca81ded51937cb4b118dcb8dc93e2ec08ff8f67bf28069b752ee8d58e4fe

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97d0c360a7ab8cf9993435adc62e0b34110171139147f1c8ba5f1d52c0e09e96
MD5 79d3305e63b02e28ca9355d4251de609
BLAKE2b-256 a8ee8ca5879bf281e21b0b42b2c965d5fb1e29ab8729fec9147f0938c0a23f4f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 243.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3e53cc4a90c7d6e0c67800b9031945cfd12c8b0e536048bfe6d3ca280748cd25
MD5 c33d1036cdc63117557994544909dd5c
BLAKE2b-256 ab93bb5e672625d0453402208230a726dc258b58b8127a8c7b3e844151cd40de

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 231.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a761678ad3fd7a9f2dac8b55b33277f4a46ae7d63527a92c55558725e8439e90
MD5 ab79f9ba1e66a886c90c33b03c6ebe3f
BLAKE2b-256 2d633ef28a34672607e3ee9712d21037c7ef6fd46f105edded557c8227677586

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f2a45afc32391b47031b323c5346df3571be082acf70482c2f4c44afcd2a2bd
MD5 35ec47b00ddb29c16ea2a3f4f2e7746e
BLAKE2b-256 d9e8aec28623a4217c79511b0993e35b2b4d8d3678d0f7978281d19066d49e05

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba8b288cd75b3acd4a3ee0db19b6b14565470b20d470b81d789eb2932f094916
MD5 537d3639691d3d9862db31335e2ce787
BLAKE2b-256 1d9a8365158dbf489018f5e0b8e5cd258925fb05a267027c296608a4287cbb2f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1387777f4ee212440a6d246599811197b2873525632f91a5db56982eac8449d
MD5 fedf764838c786503932089f5eeecef5
BLAKE2b-256 919c3504a4b2871176a3b0e25c1a4803525be1492f5d9e6114e053af68ca9fbe

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d7303c0020b247a28fd441d8689b452ef30501c9941d482068001c9805dd6bb
MD5 2a55cf7f284f40d6b6c73956b1b797a1
BLAKE2b-256 fd292d55fdd2a80c6813931bb66589fbe8d0ef8f45b6702a382dfdaca8610a6f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 519eb8bb9be67c5760b2dd596680ae57f81ae2a357e355ca98aa0d101b4ff760
MD5 af85b259c2a1e943cef8791d228980d1
BLAKE2b-256 f394800a3dd4990e8e31d2ec6f20d07daf28a9b44581e48a4a39fd7ed8204af3

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2630cbb0d1b956dfb4f578409f9e8706e10d6a63df69fa0014b88f30458be8be
MD5 06cf571d03468c917edc96f458f8abbc
BLAKE2b-256 f8f0090434a186e7de6794b90ffe55d5d00a23c5ec8f3d8e287bc7a9049efbe0

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 242.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 893a90725abb1799162bf89361a7666bce9c9d280a38f73e7ab2d63b0a0e5468
MD5 950f011ef385dceeb6a7b8dcf68d18f7
BLAKE2b-256 970357441b562cef35ae42fa324364d01b065810ad2683ad689cfdc53086b19a

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 230.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4b2cf5f6ea9c1472ff3f5b8b664a1e2b8f5c7ae61f3536846a0317b9157e6498
MD5 8f4067244057e8320e2961aaecbdcd3c
BLAKE2b-256 197ee22cba6ba4f7a59f49b1adf07752c8154444e3907482f58e017f10eabbc4

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ede36bd489c991f116be8567780ff4949338a9cd269bc98c8f98b6bac3c05b5
MD5 71e402e59999a4caaa28380d186e3f42
BLAKE2b-256 6afe876c93ed44f94f4ab718471ad903e69c9e0b9fffd6b93e58534e521adb5f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88dad9b8d28cbbd72e3399be74abbdf691568e3cd707e3c7b494a5c736ea60b5
MD5 2de7acc7ec352dcf9cf157f402645e58
BLAKE2b-256 33145ae81388aa64f87cd569796fb9b7fccb0f64976c9fe9acae3d59bb0a8d29

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec9cc1aaef959cd18a4f598843519a2aa5a410e890284a581a399ff633354ea0
MD5 f57059e1316c2d9f809b6da85e465909
BLAKE2b-256 45ebc09ccd4f4e2e9bde726f3e139d0f80f0e1bf9b9f7b095a5a48f352687571

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28aca44a63fe0d53b2dd934421622362a7213e92597a8fe34820aa8b6692d2fc
MD5 b8424cf0f53e3e474b2749abf7c7b96f
BLAKE2b-256 a9e1a0cbcd6400e712b8dc23772f6af769dc898a12a2a5cead06136a435bcdd3

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68abfaebeb557e75e0845a7698bfcaea547cdcc921a8e0c3d34986d853d5d136
MD5 5304b2acb9538896a2599b03953cf763
BLAKE2b-256 297df93b31786881e0823881f4b0d48112228dfb2a315b7df2e1f808e4d50648

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72d5afa14f90eb8a0fc6bc3b5230873323883006c3133f902b61c0416150ee6e
MD5 cf57c2b3799dd7a54c88515881807a79
BLAKE2b-256 cb9301b8b40d859fe0a089230e9348598461c3abe0e4d2e958205d2395723171

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 242.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2c629e8fb70bafa303aec2ef901c87fda96b39c68f1ff230d9c4631f62d469a
MD5 bcd73e6aaeef6ddb4de0ee328c226916
BLAKE2b-256 b81c6d1417b62345b8dc89e0688b14c2028f6b5bb9a2f5f6416b237ec1a8986e

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 231.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7fb19f255551746a06f3e349f4346a9eccd11f75cc0764e866fd864899aa05c5
MD5 4199371391117af18b6b9a63308312cd
BLAKE2b-256 7454dd331aecf1abf1754c6fcdd5d077b439a055d02714ebbd293934845a9512

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c938140280d551768aed4cef2e9b7c9f7dca803b9a5124d562226c0848621434
MD5 eec7be2c217cbece00d8a50d12a342c1
BLAKE2b-256 13033bc2719e922bece8da371c9e987991de497c68732b90f714f94e3cf343fd

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ea3bad0cee4ee188f349c9785c1efa6d55faf366d3bf352b0c34b7f1b42dca6
MD5 0bea9cfbfd2124a6eaffe0a16a0f18e2
BLAKE2b-256 d09e059b4d525c48ebe0b0568de0c7c6fc572dcd5904ee1895fd393c5ddbdd1b

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c68eef5197c18f3ba072b2f4864421477994d231c3caa96df57ad0c4489fa40b
MD5 947010d7e899448563b4db0321a1bee9
BLAKE2b-256 8cd74ab94a89912e1b9d66e1a2d459fcf08655d71b9e5c3739bcd3639c702300

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8702d4dc4501a09a21c93ff6268980f39accf446c0e1abf6b1a10c1deb0e3cc3
MD5 291dcef245d99ddb4062aaf3bff7c9f0
BLAKE2b-256 13b3fc2bb39aca6c4b3c71abbaba665a392a9b47229e0e83a0bcdb5e6eb1266b

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f971de51ce6dc7fa37739d124fed3434fb8850e17052f045cfb809ea8dc763d
MD5 cf414f6d40c0b6b06626deecf82926d1
BLAKE2b-256 f70c1c3d84f345b633d9a9dd48254179dd10a005d3d620b52d6e85c42da304b3

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b19034964d30813017bb803ad4520921e46bd837eb4a5ab42ac5b3f86f151e9a
MD5 fefc9b78e334bf87b109ca4a8e0cc0be
BLAKE2b-256 b8a8cff61f5c859c9bc9b7dfb60f594305a68700be2fb49d02a57d458bc8a405

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 243.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe58ae6011de4911b3ef05c87ef4b993f46bfd6184634f88220c9358c433a030
MD5 73a1114ebbfc78487076d4db9e23e57c
BLAKE2b-256 6c051f815a38dd7b67702fb098bb28e033c4ee7633ef287be0a186b462561b68

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 231.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c9605149312aa9657a1e103475c43a755e259bd7c1fdc0caca34947e13c33239
MD5 534632277b6ed7c043509214783deb60
BLAKE2b-256 8e866a2ba7b153f1382b07c4c35b73a34951e39e897182447ed78e085f710e0f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 552404c134df6aa97c3917f0bf5833c713bfa457e27851a8a9317d3c79279b12
MD5 ae8a0e104bef6c8442636e6c34908b75
BLAKE2b-256 7ec9ade354d4ad514cc8c82a1648e85341de223d8bfb9a1947dd807ae3315c79

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9cc1d1ca94354de2f56e2d6524703917a13dd655a1aaa3922d6df7234719a3a
MD5 49397aedeec6661753a83bc45f0afb03
BLAKE2b-256 6753138cb2df7711d1192460cdf7dcb5d0590aff8d4654ef67c3af1bdc0c41a2

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d363926fc375ce8f18dda94c376d5a73be5a9d0368cd96091622a77d3a43eb1c
MD5 6ebccce198ebd725395c60ba88fae946
BLAKE2b-256 5adfff5dddb8b198ef45ced5e73f0893fbe8c48de8833eddd1996480d3ac9096

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f936b8d272ca1703ae31620d5e1be9fae4fc03beb137db4f7ddd10631b7069f
MD5 ec69e3b61a71b2dba1cb708d6757c3dd
BLAKE2b-256 c20962e47d91e4ab8cd5f99ea44b8adf41faaf027b77079c1b2f65523b4aa843

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2e0e81f3e862a93077e6d46f5ab1568f55e7aeb4ff4a3eca9e9e4f3857f8f3b
MD5 6507fbd22560d8ebb3a650411c10070d
BLAKE2b-256 66aee019baa58a2357d6df56ce03f99972aa5fc55cd12185c06f79375ecb721d

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce9484c1949cf8542b1880427db780987a6bad1b34029f8ce4fd890cf2033957
MD5 59b787798375003ac846d065e3b4ac44
BLAKE2b-256 94d238dfca65fa77f53b94829d0a9f6bd633c0bcdb5f1518b872c66bef665d4f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 243.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eef436d1fe4640a47b1ab6c8b6a79293d69bf05991cb5f0341f7c7d0fbda14be
MD5 ae7dd6687889fb0ebf51801351d0bb79
BLAKE2b-256 060013a1e28b493d47be627e084e93262a70cc88ba5b8722b088eb0155ad67bf

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 231.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1bd9070ab9e0a9e368d62110a51934ea5d1221e751fd95b76bfe426c99393656
MD5 7e8400a38cf706e630ee30b323a565b5
BLAKE2b-256 1b81ee81c81fbf4243f1bfc3ce04b1120814677d9b1980bfe38160e5729e8721

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f44b98a43a36a0fd54e1073104615edd72863e5f50daaafbd122743c8ecc56f
MD5 8561888e3e7af588ec87e0aa2cf6a38f
BLAKE2b-256 300565edde1d4a686e425d5b4d2c0793c1336743389227d8911b054bed72e37c

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71c2026df5d8bdd1cd5e27dbb9d9ae4cf4406de2a916dec39395732834656bc7
MD5 10ef14b8ff4aa6bba411fb33860cc01e
BLAKE2b-256 6a97fd7adbbae980119bf006c05da992d1c3666ddd4bc15d80f46627d2fa9e5e

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd21e36f542857a4bb98e6cc0f5aa546557775880778fa94a5b047517e4dc735
MD5 9c902c495eee8358be21079b087f27d9
BLAKE2b-256 d4ce4ef2339dfece3317400f1a55877781f725177fb644bc10352036f387a720

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 731d34a61c4cd09aae1d91c732be6cf3f5819b69a0e0b602e27b22349d657238
MD5 ad91d2014faf1ea4bff8fdb2298854fc
BLAKE2b-256 30d65b14e8ee19132cd5304a54750e9bef0d25897079c066e94d2cebb4c20801

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cc5056d591c9bf9e6b62beb891ffd7df7e8a868771b3d399eeae5c415487c00
MD5 98050f0f5dfed14a2cd3431ee98892c6
BLAKE2b-256 5ebe02fe445822b8859062da991137bf6696aa8839b530b06a02ab828a801d98

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f5246f3b18cb8449963b0858008cad67151a90029d8f352f618360ab1dfab10
MD5 0cff15a9e7c49aee56eca7fd84b9b2d1
BLAKE2b-256 26ac83630f465278d7528dd451a8bf615f96a73f572b0aa3d4adffdfddb8abe7

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 243.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fdd38a1ccb856123c2c09f3ffa28caaab5a4e1df1087356434b4f9775641d3d7
MD5 4c2c8b37c0819d0566414e614c1ee42b
BLAKE2b-256 f1ed4aa65a5f606b252b74ce1108cc4d85b08942119d76e8a485c944fa59ac26

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: tda_mapper-0.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 231.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for tda_mapper-0.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 44b5fdbc25c2410591fad6c527f40baa50116414c909187ebf7ea97dec38c156
MD5 3988d6c35f1e356129d04a961ccc4d42
BLAKE2b-256 69c96ac88f8051cb2c8c39c0bb792c1469988d5bb7c94e1381173699619d4fb3

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21076d55002434180b1abbe77a5644137d7a067ab46f836896bac8905b6df46c
MD5 665ac95c2d9287261401c434e62eec85
BLAKE2b-256 42c8d5783bc2a4ae7d35fd358bd0b9b417fd78480b9c89ed5fa340a531880b5f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1a1fde8f5ab93210e5ae76097e2e0de21c3f6fec5b57c3148403393e7d772c6
MD5 5b58de763e6a43417e79090a073743c7
BLAKE2b-256 a6c55cc166c974db82280fd4d9a328b950f4f6b6058770181b106f6657b47d60

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfecbae9a5b0dce79d7b5300e8fe11989c1da65a9c9350c6d721625001eb7c81
MD5 f5204a0431334b0414d3c430c1b53a9d
BLAKE2b-256 fd7e60864c109ca8c7e3904ac231b47f43c9855f41f7254f617e3055e48dca93

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0433a3c43ef98a2dbc192734faa7da93ffd55e29b3577d234202de791ed3f5e
MD5 e66a18a06ee4ad08eabedeee00514d91
BLAKE2b-256 47391f79834ab5b19f3846d00172192a4b67243e7aad4603b922c6e0caf1f53f

See more details on using hashes here.

File details

Details for the file tda_mapper-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tda_mapper-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22987023112186cd3366d6bfc67d255732e6a1ce5ffdff94b0214e0a11d1880b
MD5 cc3c0f028bcd9d3a8ddd575d304be402
BLAKE2b-256 013b35249620aaf290bab7cf706a6d7e1ea2a0eed5065429f945a21a71b4b513

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page