Skip to main content

Polyscope: A viewer and user interface for 3D data.

Project description

Polyscope's documentation is hosted at polyscope.run

To contribute, check out the instructions here.

Polyscope

actions status linux actions status macOS actions status windows PyPI

Polyscope is a C++/Python viewer and user interface for 3D data such as meshes and point clouds. It allows you to register your data and quickly generate informative and beautiful visualizations, either programmatically or via a dynamic GUI. Polyscope is designed to be lightweight---it does not "take ownership" over your entire program, and it is easy to integrate with existing codebases and popular libraries. The lofty objective of Polyscope is to offer a useful visual interface to your data via a single line of code.

Polyscope uses a paradigm of structures and quantities. A structure is a geometric object in the scene, such as a surface mesh or point cloud. A quantity is data associated with a structure, such as a scalar function or a vector field.

When any of these structures and quantities are registered, Polyscope displays them in an interactive 3D scene, handling boilerplate concerns such as toggling visibility, color-mapping data and adjusting maps, "picking" to click in the scene and query numerical quantities, etc.

C++:

#include "polyscope/polyscope.h"
#include "polyscope/surface_mesh.h"

// Initialize polyscope
polyscope::init();

// Register a point cloud
// `points` is a Nx3 array-like container of points
polyscope::registerPointCloud("my points", points)

// Register a surface mesh structure
// `meshVerts` is a Vx3 array-like container of vertex positions
// `meshFaces` is a Fx3 array-like container of face indices  
polyscope::registerSurfaceMesh("my mesh", meshVerts, meshFaces);

// Add a scalar and a vector function defined on the mesh
// `scalarQuantity` is a length V array-like container of values
// `vectorQuantity` is an Fx3 array-like container of vectors per face
polyscope::getSurfaceMesh("my mesh")->addVertexScalarQuantity("my_scalar", scalarQuantity);
polyscope::getSurfaceMesh("my mesh")->addFaceVectorQuantity("my_vector", vectorQuantity);

// View the point cloud and mesh we just registered in the 3D UI
polyscope::show();

Python:

import polyscope as ps

# Initialize polyscope
ps.init()

### Register a point cloud
# `my_points` is a Nx3 numpy array
ps.register_point_cloud("my points", my_points)

### Register a mesh
# `verts` is a Nx3 numpy array of vertex positions
# `faces` is a Fx3 array of indices, or a nested list
ps.register_surface_mesh("my mesh", verts, faces, smooth_shade=True)

# Add a scalar function and a vector function defined on the mesh
# vertex_scalar is a length V numpy array of values
# face_vectors is an Fx3 array of vectors per face
ps.get_surface_mesh("my mesh").add_scalar_quantity("my_scalar", 
        vertex_scalar, defined_on='vertices', cmap='blues')
ps.get_surface_mesh("my mesh").add_vector_quantity("my_vector", 
        face_vectors, defined_on='faces', color=(0.2, 0.5, 0.5))

# View the point cloud and mesh we just registered in the 3D UI
ps.show()

Polyscope is designed to make your life easier. It is simple to build, and fewer than 10 lines of code should be sufficient to start visualizing. In C++, some template magic means Polyscope can probably accept the data types you're already using!


Author: Nicholas Sharp

If Polyscope contributes to an academic publication, cite it as:

@misc{polyscope,
  title = {Polyscope},
  author = {Nicholas Sharp and others},
  note = {www.polyscope.run},
  year = {2019}
}

Development of this software was funded in part by NSF Award 1717320, an NSF graduate research fellowship, and gifts from Adobe Research and Autodesk, Inc.

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

tetrapolyscope-0.0.4.tar.gz (12.4 MB view details)

Uploaded Source

Built Distributions

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

tetrapolyscope-0.0.4-pp310-pypy310_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

tetrapolyscope-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

tetrapolyscope-0.0.4-pp39-pypy39_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

tetrapolyscope-0.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

tetrapolyscope-0.0.4-pp38-pypy38_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

tetrapolyscope-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

tetrapolyscope-0.0.4-pp37-pypy37_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

tetrapolyscope-0.0.4-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

tetrapolyscope-0.0.4-cp312-cp312-win32.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86

tetrapolyscope-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tetrapolyscope-0.0.4-cp312-cp312-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

tetrapolyscope-0.0.4-cp312-cp312-macosx_10_9_universal2.whl (6.8 MB view details)

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

tetrapolyscope-0.0.4-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

tetrapolyscope-0.0.4-cp311-cp311-win32.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86

tetrapolyscope-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tetrapolyscope-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tetrapolyscope-0.0.4-cp311-cp311-macosx_10_9_universal2.whl (6.8 MB view details)

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

tetrapolyscope-0.0.4-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

tetrapolyscope-0.0.4-cp310-cp310-win32.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86

tetrapolyscope-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tetrapolyscope-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

tetrapolyscope-0.0.4-cp310-cp310-macosx_10_9_universal2.whl (6.8 MB view details)

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

tetrapolyscope-0.0.4-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

tetrapolyscope-0.0.4-cp39-cp39-win32.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86

tetrapolyscope-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-cp39-cp39-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tetrapolyscope-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

tetrapolyscope-0.0.4-cp39-cp39-macosx_10_9_universal2.whl (6.8 MB view details)

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

tetrapolyscope-0.0.4-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

tetrapolyscope-0.0.4-cp38-cp38-win32.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86

tetrapolyscope-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-cp38-cp38-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

tetrapolyscope-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

tetrapolyscope-0.0.4-cp38-cp38-macosx_10_9_universal2.whl (6.8 MB view details)

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

tetrapolyscope-0.0.4-cp37-cp37m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

tetrapolyscope-0.0.4-cp37-cp37m-win32.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86

tetrapolyscope-0.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

tetrapolyscope-0.0.4-cp36-cp36m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

tetrapolyscope-0.0.4-cp36-cp36m-win32.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86

tetrapolyscope-0.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

tetrapolyscope-0.0.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

tetrapolyscope-0.0.4-cp36-cp36m-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file tetrapolyscope-0.0.4.tar.gz.

File metadata

  • Download URL: tetrapolyscope-0.0.4.tar.gz
  • Upload date:
  • Size: 12.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for tetrapolyscope-0.0.4.tar.gz
Algorithm Hash digest
SHA256 44089227a12dcb6e20f29efbef71e409439a3be4fc0d1fe578560d9cb3c51fa0
MD5 66b304537eeff0eb961a9dd2a805a5ad
BLAKE2b-256 f5a202fe28e5b84d0e8b575eaa4956a795984b4e3f452a4c298b1dc03ef756d5

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 242a738304c0777eac654fe536ff02506d05a3b0eba24595a678ae595df952c5
MD5 43dcf8961cc750888250ded08d3f550a
BLAKE2b-256 77963a13bee75ad7a3b610f3cd3d3a622289acab843508131a11a3f77be3efaa

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b5e3fb15699a8bfb2a029eacd080e733cd53775bf779b6022602530b352becd
MD5 fbe62df574e86a26d877587d476f8c5e
BLAKE2b-256 ce3fed61042a0d1d271d03dc66d5f35cc37de7aa3c37cd9f6a776a9e63ee6bd3

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b8e1c5280c919db4b46b69fa14c30ff897523c16ab4081b0c1d9a7237892365
MD5 5eadd487d1427a04e5892da3db0abd28
BLAKE2b-256 3edc6bde11ce439fad98ceb58065b9850823f7b1ec958060703588357bd09170

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a540b855230446c442b123ee6d530e86177679370be79496b4d0b21ce3f94512
MD5 06ab06b230e2aef82b957d0b0d5ddbaf
BLAKE2b-256 f8e49597ae9fa6590e23b67207c7e222fbbb82ea94b0ca8fce5f8ed450779b73

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5b4aa4e5faeba0d1e8a07f8eed75931d16fcc88ee2934da61f16e495d48ba050
MD5 0ccedd5bd9adf10a4e91a84aa8276b40
BLAKE2b-256 bf66cb17255b60eeeb1e187cad5624ff8388a2a80c444ca1190303057b46c6c0

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d2c29886d1f79e7429d6a3bfb33765994566110be55db743ed0bb50b3a6ad16
MD5 15521ab17f751021fa4d427ef4541d86
BLAKE2b-256 a4e17e9d4046fa48272a617b7b9511964165e89221d8c361db2d6dc8da7df6ce

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e502e15752aed59bed27deddc887497014b653666265a2542af6cddcf8705d7
MD5 c049f451ec714e6ce332d9871ae2b67a
BLAKE2b-256 4d56e0f8a73c6aea38cf72a811fb8cbd02df6453425cd35e8c7a15b407be2320

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 070f8b12f2408c4d075ff40a3616c18eab99bf1bee4b720ef6ce20473e319af4
MD5 450e4cebd92f5a389a715d53fb7e1c41
BLAKE2b-256 4ca749ea6f7883be82ca6b4a5609a71e9e87079b1e3a478fe83430ca5c4c6bff

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cf088b8340b15cb5ede0d3d7ae45e8019f15b23c34ab3e061109bc3722ab056
MD5 e384a99d7869a3e58a98895e111a6989
BLAKE2b-256 9e4a66b3071e6c656f7162289d21d9e78c3bdab825ac242de959eb3a8727722a

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fbd3963ac26a9f87221c016fe9a3746b4c2676371f00e890a37edfa9a2aa4fd2
MD5 7c40c90d7912bf6557d27715d03065e4
BLAKE2b-256 49d1417d2f8d160707cf70216556788ec9588aff90d985e8dce90d89730589da

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8d1d074c035ec46fdd8e2841d4a8260da1347d109093fe3d5315f4836f61a5ce
MD5 d3b61587363b4f1afa4f40d9065c920f
BLAKE2b-256 1ee67aa6237726d6d6b38a426fdfa4a69cac7463a516928927bcef65fe6333aa

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f21cda4893ead6a5fdbab7b5860f191638650bce78a247dfa1a60c1a6f18abd
MD5 f7aaec9b5fad1c6b58daf9aee38949b5
BLAKE2b-256 4def95b74ba39f7af541c6038ffb3321efdb6a649e266fb40c672332a5e597a3

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38da9fb9b6bbae8b0f84c44b1bc873ac07dc78d2a3f9352ad96c5cbdc2ba45ed
MD5 1564853d4bce76d9d857bfef157b3c00
BLAKE2b-256 a9e0f801cb4f8fd730fa0cc712773a4723a3ae517319efae05267fb73cf37e03

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 386707b518cd8cf7c4390939e13c33d8b266eef2cc4616215d234481baf7020c
MD5 df8751182825c1c5e550cab8bbe3e2dd
BLAKE2b-256 9de20868cd213c51156f7c74be968d84f576451ef026ca6735c5a660bb1b7248

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 662b97e18052067e360470d6e17b650f741c19c83119e8601ba7ce53b9f66d03
MD5 2286d23b027eb83bf66a02835550651a
BLAKE2b-256 f43f2108b6a7c4e6b0eafde66e98321b202c5b14c0127c7e7e597854a6bd0a39

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 32dd91af1c29a491dbb9e71618403c36014c35409919881c5b987b0e6d887fce
MD5 c50aecb804816f39ac5200b79240fe37
BLAKE2b-256 4681ac1bcd346ea2b60adb08eaa280848264490f9b0b475ba794a28ba8e55d55

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c633c74760fb1794fc6dee17bbfa27e7b9e237dca569167b4a68556e15509f3c
MD5 e2726eb93de4d68da4d2ddbd980233ef
BLAKE2b-256 7dc7fe1ff80192cd002b347e1d88138ea87149cbb46c5ff19daccdd42680206a

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77de625dbec62b1af2455f8201accdaed9ef98c9f8cb5843f960dbbdfcc4f8b7
MD5 fcc42f1f9f34ed4591c2018f27aa0bc6
BLAKE2b-256 9ebba41f5faac85c214e16ce9692f31843a90f8f30f9766ef9f7eb914780a642

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbbc9a7b752abdfa8d2ac2c469debc439d080706344f33753bf352f1eac6419b
MD5 2f78be67603166b4237dd394f4e08d4c
BLAKE2b-256 10ff6cf2dc92baea94f7ea414de0398a56301a75e0945dc389cff67152a593bb

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ffbc5be4b8b18c154966e7e9e0ffbe0962226a151a843358dd074f581b2b495
MD5 4191c6e548fbf855ebc9f434f4e7ecc7
BLAKE2b-256 951aa98de1431d01adbdf4aefe6ad82e1b93df3c1db35c0c7f0a3133f88082ed

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7ed7c0e726b28f6febd7277958a35ca88beff709d5816bc9bcf4ebb37db3794d
MD5 c99fc2737fcff4988946f3b5def63c1a
BLAKE2b-256 36a1ca283757c07a53737e9719039f3f4a162d83833fc910ac8875c6179a2fb7

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e65cfb7f9b6b40ec408cb586d4e54f5145ada3901ebe35a07d4f51e63534ea23
MD5 1762fbe9eb2080c3dee7a2015d3c97a5
BLAKE2b-256 902364c286a058029c889fd1770409ab8d11f446f2244740d192d5e7d5cff645

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5f457783b98fb19e68b1850471ef91db815c895e9fb113ce9f6bca7eddb2e16
MD5 49d2015e0a34ce4266cf5bf11a318b28
BLAKE2b-256 f05ac83fbbdfae206010da4c74d5e56b8c8d922ad859c48403d068b56187379d

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b70ec1a81b5e44af1903f806ecc3e4258df76969adbd0aa0e8fd0c027a48968
MD5 e791447479ab2aae907bfc315e4111f4
BLAKE2b-256 63a1ae300be6c485cc9ec157c06598be7cbe0acb6eeb3b18fc6ecced3d3d7c37

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ddfab41b42b4977f89364b108f16111f96abc54ad62c26611e0a489e409fee3
MD5 1b2005779be71288abfa0cbe2845ea2f
BLAKE2b-256 174b0daf791c32cd1f2fb0538d14d2017be3d20e96c5d68942ead99cfc5a8090

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a76065280ce6008d322089c67d0441c5f8aa8db8cd4275290fb070ec73931ff9
MD5 8b8b5f5fc79bdd109b08919c57b41335
BLAKE2b-256 755c1af4e8179d021f7ee4afb9fe0a36bbf307036cd31fc6e64c20b51e6a35ec

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cb28178f9ab57a4a87e21877eae81b26bc5a210a0b03f41f1762133c7206bcb0
MD5 936c0e5704eb32a2c4f3358f0d37fa8d
BLAKE2b-256 eede53e2aa9bca6a8a2a319094aaed226c809f5191d49b674639a5ca464fdd5f

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 55f4ef704867d972266c69125703834e444fed0ffc232c6f3dd09ce34eb1b0f2
MD5 884c7acf02b41cba6d5a606534eb2bdb
BLAKE2b-256 5bcc1e039cbf4a8a2e9c66415ad711174297e1b18e8de6c14ef637c160ecb1b7

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e75dcd421debe697ebc7c72c2d86721ef4afee87bef6c0901b869bc2fbc9ba14
MD5 2d90068215142b18b50721d86edc9910
BLAKE2b-256 a76dd61cd9c6a2ab645edb37abf1c094816e43850499a7d79df1bc0d171d6501

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8fa209ca70c914b710bc705b99c6c4b51250a35593cecb319e9feb44f7a7849
MD5 d452b8d0332cf0f783feeb99b0762dfe
BLAKE2b-256 fad8822c17730a241d37cfd8582e61c92d5dba9ff78b079b224e775006a64b45

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88f82d01604c5169fe1df3dd0c475fcb3ab8bec24ceb400589453327a0fb83dc
MD5 377588839a13be7e5426db151fb1e6b9
BLAKE2b-256 342998dde351a303b6693ffefe58cc192935843b9aed27cb776a0ac931201e74

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efd8eb15df056e3e5aee003d0b8b2fb958319b59290b724c578be28d82035cb3
MD5 87ada8ad25332e271f1a709d77abb00d
BLAKE2b-256 bbf7f6c65ee5eba84e5037958b5c289ae0476fb79f1acfdc1d9b24dc2cfd6be0

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f6c8f52f515b782d9d7c31e29bd8afabaf2b7ea66df282f8539778a86dd6537d
MD5 19b7fd5423f054f7d40a88198b4066c3
BLAKE2b-256 a0efc17596c42e937b6c291a5e490ee2bf01d4b2f7d739c9b488fc5073b601c0

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e248d41b67f76415e95bfa4534135491f718f99a143fda74b4a57360045fd844
MD5 c00620566ffab6d7dc7386f02bbf6f7d
BLAKE2b-256 96f0abf04230f46bd6032a5dca59135453e7c131ec0287fa8447b05f4d680882

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 af4df0d716709b2ce114bf64c8f3ed0a660025174edf0b5b85c689a7fad107f2
MD5 f1a74c6f56fbf1c3e52d43da9896ce4d
BLAKE2b-256 fa555c2f9c7684c9037a668764be6c560655a28510444d4f4a2e530d9332b41a

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 991efe5508efdf6d10da14d4656f86aa8f8500395a004ec9dec3d1735a808e5a
MD5 77116bc371ebebf11ebc2b37b0590883
BLAKE2b-256 58b9fa87faad6bf6966c37fc1431ef0896289ff9acd8331224d7a715201a05a1

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9a89726cbe561b970bc040077459692ba84122a965a947dbc7d9e3c94dea42d
MD5 ef9b2ea84f40ce20a65a6e448cdea7d6
BLAKE2b-256 e2d65609329dca0a7e309cf16f360890429708fa32a2bae5b081c3490d72b015

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e9cfcf451d48f19eba7deaffd004f58789dd4c87aa1463267a25665c03e49ab
MD5 4714fa5491672fbd30735b575b7ef0a5
BLAKE2b-256 c300c0bb5c2a88027575087063f2eb128e775fd8c755390cc6cbe7889d5c43b9

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64c30e6548a074479713def1d4c3cc25b50c30f4df306a0ad65030de3e0c3837
MD5 460d59449b5deb58beae7c81bba08dc8
BLAKE2b-256 35f451552a9166c30060b0e8679f5a5c562a39c37e4338fa0b10e3dac5157722

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bbae5a3c5a470d29a062c791832d64da4fef643d0c02058bd68bc66c0645db6e
MD5 6505be6a607f861817f7a2f73573d855
BLAKE2b-256 a673e0075ca135f4fc8adcc9cb70e6e1f459f57196d9fc99d96413a8e9e522ec

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 87b358b6d69d14587b214227dd502f9750990eda72a65e55ed32ad8ffaf64f75
MD5 23b0588a0f81fa8d61e582ca8be83d80
BLAKE2b-256 6108038796220855f4ef326c5155c23a8d99ff1cd6575bc2ac35dfe492ca238d

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: tetrapolyscope-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for tetrapolyscope-0.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8c6083e06dee072cb1d9fd6ee6319d25ad15f32567d7c8bf2abf84fbe1f32aa7
MD5 5f1c2179de698984f2adef4c58453572
BLAKE2b-256 8bfd0d2fa5b19f9eab854e3b9a3ca2564641a845e14f02a79d831e24ed1b9280

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e6da6159296c19eb6ec5a2f42f447c895dfec24216947b977d779c147571dac
MD5 35916b847f9b508ffb4c4d717f900727
BLAKE2b-256 703f4804d398e64630dc76df4bd17811fb341fa3b67081c78bc54f38bd1b2abb

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4eb66de87da04a61b7cb7a088e5fc5ff52259e1c086f03a24df9d3d02987ce93
MD5 69088fa0f3b832bd8819d403b40b9022
BLAKE2b-256 be2fe36210beb7e34147e4cd3761ac2ae825f09c97ea049cbb8dbc5cc9736707

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 419544028bed3d70d505ed7f52a23e0d9ac7a76d102f0fb7861777a26c32c137
MD5 a925f347b0da3c5789cc5d9da0d0b716
BLAKE2b-256 e8ee793365480b56b854f172b8f7b9c4148dacfa9e9f173e8231ac3df4cc4cc4

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2050ae1496f0259803e14cd7cccbc8b78b1428105faf23d3dd66ba4990819330
MD5 5f851fcd56f96ffd40800e500926aab2
BLAKE2b-256 4602a7431a2d6ba91aa3df916d8d6544641531696481067265691f7c519e64a4

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 32753a7657d726d012f9db8015cfeb4eee472923daa0a582d77ec5d78a205bea
MD5 07c9c27892512b520860eba15892735f
BLAKE2b-256 69c3e0e877d7b8f04ab17e5ced4e8a18588d918bff324cbe0a294bd17aca7fc7

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e5ed363c37aa4fc144ebf7bda4e437dd2734d628e99190329641ee22619c8134
MD5 16ff4d6a1f2f6777fee9e6739e8ccc0e
BLAKE2b-256 e5f545594b6f797af06403a4da0cda2cae1464477a2f4171a368a0a6b0cbb798

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: tetrapolyscope-0.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for tetrapolyscope-0.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 98a30925210bca3e2edd576bdb92974845d6e72424e4f4c3a7e55c5d92400105
MD5 859e5d1a83a4a4ef03ffc6d56aaa8b20
BLAKE2b-256 2c931829d405dfad68f8dbcefb5a031244bfff6208a93880fab2cb097334c056

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6fd8b911327e23336f59d00ab46f79400b37cdce8e2ffb94fd2cd4675d0c327
MD5 1b366902644f2d7ae7b9d6d232e075fc
BLAKE2b-256 4a720950e5c2a90cae7c425d75288776603334a14f716237262d19cdb686c898

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4a1b39ebc7f350107c81819ba1ae50e060ee0fc417cb66b511438f74d55adb3
MD5 5d84e93d2cb6f58d624a20ab14235b84
BLAKE2b-256 b50b032b7d1c0390d50436813c3ccac5cdef85f15523760783f5fb404c6f9eb4

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85de98aeeea31b43c2caf0631f43e9f3df0ef2adda18e0cf8c646a0dfb8f1de7
MD5 6dd2eb98d3816a2e9840e00461c6ee95
BLAKE2b-256 42159246b151467692f306bace4eb7a4cc303aa8c70de5353ce9dd044a226b8f

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65d9783a948b81e9a61fa7ab18043e559bfde702576846f866c6124ec8d7b840
MD5 1afbbd740528b4fd75124dbc45dd65d9
BLAKE2b-256 78334f845523894496adfb005171f6a906100d72d486b25d1c481c937e5bc05d

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9e94a013501d846bdba762c291ac937c8830fd73cda56135e43c118b0226370e
MD5 d484b9cee04349a6b617498f7e702248
BLAKE2b-256 8b9f58ff571b93a0f1a9a62a64d3abf1d99f6987bf375771f2a79e45f5de1ca9

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bcbae41f38d50ccc91fda10954cbc832acca36e2f4e57e7f0ae5a9722bd92de5
MD5 b29988bf33aedd261812118d4ce59b09
BLAKE2b-256 0fccf66c343e0d2e34de4bb24fc7be2321baa25fd5309acebf96dce82ee8a6f3

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: tetrapolyscope-0.0.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for tetrapolyscope-0.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 088a08a5a9766da6a145f5be4bbc427499648a98624ba98059b20e205a5d486b
MD5 0ab861fca458ce69a412d98d583943f1
BLAKE2b-256 49d6842d7a4d32d6c900c919fef422a617faa669e56a6e7cfba052295d8f4b2b

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe24cf343f75cef11e50448abdbff2fbd445e945fce00d1a8e80f207c5c7806a
MD5 7c1264bf011e7b90bb53f8f1365396aa
BLAKE2b-256 8b43068a212368afacfc53ebd9d1810853933ffca84b0cfa61b366c568121ddf

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52a14459e52f946956b477bbb86d6953205cd6ba3e0d3e718a0b624b92cf2cfb
MD5 68a68dcc11d15b29bcd71f2aa8d72819
BLAKE2b-256 dba3fcfcc4e95acb0a8479c7e54ad4a4baed2f2a2395bc103437788ecf8033d3

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f51573ac7ebcd60758b96bfd43d74c045d783ffdf354eeb697c73bce4ccf5ae
MD5 3edaac13e8b09ba5b5fa84bb71e2bba7
BLAKE2b-256 64b752698d4ad337952439cc0434c0e9863aad647ed87380466bd92c2705ff7c

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ea32db6f378caf4ccfe5eea2fe94c8326cda10abc276fa4766ae28f24c4d5da0
MD5 dfc81239197f8f009cf52f6d0fb27654
BLAKE2b-256 2b14f3adcd33901c2b2f817e353c1c16da3b31f70d31fe9979848315997d7f51

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: tetrapolyscope-0.0.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for tetrapolyscope-0.0.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 72ad2191390befa371af5c90e97384d51419070ade19a25773a27f7973d59ef8
MD5 ef123b4a1998679380319eab1b3502d4
BLAKE2b-256 609529e1fabc6a2051c053b3972c4acb95c9f3887182d30f97b82bc0b1c1cb01

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a48cebbf916773d44377b56d14a97955d38ccafa9d495ebcbbcde3786a3f260
MD5 0217d4945524e8cdfc740d70b9decdad
BLAKE2b-256 bd6b3c04edb700ba0552a77d8fb7fe32cfda852ac0ac55b757b17977389e6f20

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ad10944b73bc6868f6aebc24c242fa8f6fb68943d0aed2775b5533048ea12cb
MD5 90527ed8108b2e99afd317f9a5dcd225
BLAKE2b-256 dcfdfca4415a7d0c9ffca644b04de7358f262657cd8afd125980866579ad81e2

See more details on using hashes here.

File details

Details for the file tetrapolyscope-0.0.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetrapolyscope-0.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcfcdf86d6b2ca1527a99779f937805890a8425b018efeb3089e913694fd2eaa
MD5 0596a5fdd421149c8181fd935808b7ff
BLAKE2b-256 1a152a5fc33f50725a917f116b062fd54e220b9b13d020477306e3d2609d2b0b

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 Pingdom Monitoring Sentry Error logging StatusPage Status page