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.2.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.2-pp310-pypy310_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.2-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.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.2-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.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.2-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.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

tetrapolyscope-0.0.2-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.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

tetrapolyscope-0.0.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

tetrapolyscope-0.0.2-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.2-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

tetrapolyscope-0.0.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

tetrapolyscope-0.0.2-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.2-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

tetrapolyscope-0.0.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

tetrapolyscope-0.0.2-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.2-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

tetrapolyscope-0.0.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

tetrapolyscope-0.0.2-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.2-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

tetrapolyscope-0.0.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

tetrapolyscope-0.0.2-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.2-cp37-cp37m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

tetrapolyscope-0.0.2-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.2-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.2-cp37-cp37m-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

tetrapolyscope-0.0.2-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.2-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.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for tetrapolyscope-0.0.2.tar.gz
Algorithm Hash digest
SHA256 b314322c1d0ecb3f7803908cc5b98fc798a67a7f956a2df2f4659177732a4bf7
MD5 9b1b8974f4a113a791b0ea84f4884875
BLAKE2b-256 add16c34fd3b5447411357fd539378a2e59d81d06fb839fd9d3cc177938df104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2c1a6fcc69da965188126016db857caa120444e38e7e31ebb689759a0d0610e6
MD5 4e0dbdfef4391b9c4e6a65e236dac0e1
BLAKE2b-256 465ae916d4acbabadc79e7d11e957c8cd0f8bb24fcad65c8278e88d0bd54c314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ac973f3c99ae856c8963a3076a22c2f2caf67d45934f5d32f21637354e52503
MD5 aaa064a0bf1de72730b8bdbd6a4dfcf2
BLAKE2b-256 83030195a9e2f7f488973167511cc02e2ba9c2e6574eb6cf0a22d222b145c3f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 711650f16e3956b697f8304ddb7188d438c28b4904e6e282c0b8cd8ec2f040c5
MD5 530c12ecd7bee0f827e14ed02cdd4216
BLAKE2b-256 bfc3efa27beef38fddff8d37fc3e3e49eed3eb79c1c282d3d0548cb20dbdc648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f8ea0b3c385d6e6dee7009980f05d46fa5509c7a044b3b41d95a9484e8eb9b6
MD5 41c581e0a18da49c0d6da083d0a12e61
BLAKE2b-256 f864ba2dd3d97083c0aa099b4868cabd9121b80508a5ad35923856ca245f1b56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef3ca33a37ce24854eea55873c4a486b1509b5d88bc60c48d5f7b3aee4790c29
MD5 9667a5efea2b9dc97413270030adf586
BLAKE2b-256 8076c0aca4817ea5c13483ed91a7d1786ef1ce859d7abba759ccb2a8065a24f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7df55073052f9ac846eacfc0920837e358c8736064006e2ecf476bc653ad6ab2
MD5 9c268d6e94e70658fae04d84a1924a14
BLAKE2b-256 ad9374edaa5ebbbc5bcb5e9adb3bb02512052edc659c75fbd9ac20c51750a437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb9f04e7a4114379e68a974fb9b7309c236f5f3dc83f0aaf997e18149e34b07b
MD5 2edfc0dbb002b04357273f0fe816549c
BLAKE2b-256 2276f2185949cd0a354fdef2570073aac1f1ed8cfeece086c936881d7ff1e647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7b377aab9ab968a6761533b0113fea0827826ac28aba4c650d739b04603a950
MD5 9b7eb5125415407947ea7dc299fa23c5
BLAKE2b-256 d35c7255d126834b493da09f31207109e6777f90087b4f33b564a4ea87e2c1d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39fc3b86e9d086ea09b995aefe0e4f3a6a65f5e9a19e523b4c09875ee160d114
MD5 1b7656db7b55abf91c6de8042c162f21
BLAKE2b-256 b58cc138b6cb9c7bb23f83d43dd23796f96d675bfc2da37764806d4e1ef3bbc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 043598c49fa0f9628a2ca3684851bd4f5ae069dc0c4ea57cae25dec4fe44bffb
MD5 f8062fa2f5c43f5b6f676dadb31e00f2
BLAKE2b-256 cf0230335488290f65ede2e884ab2a3e60fe441c6e460bc5e914b4e89b8b685f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d4138de0f96f0244ac5789499dcf8b775ffad80f33d3ae30c2f4a6d6b5cb2253
MD5 3ce99360c06448267526a1ca3404f9da
BLAKE2b-256 86c5f7bc6111fbcc4d9d59c08d859ac9e224f69857959441a1f80e37b872e690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664b1684bfe79ed1d5048ba0c95ddbafaecadd07571196bab01afe4137d33946
MD5 5b0bf827986214426c50193a6d3aa8bb
BLAKE2b-256 d918de1e01620ddd7ab12b16c7cd9c45db3c83bbff294a36d6c9b322ec124a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e64c0b9ec19ef86fe1a624ffd8fa806ff926dfbab2464a5b990ebf21fce11acb
MD5 8ff6dbd64014458c1a261eb6e813c16a
BLAKE2b-256 52a7439b1155b60a9504007b5e0e5d8c01f29250177b4a4116a0a95f862d9e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 323dd6d4ca99ad7205eb0a18152bbd8686505509259e944c7ffc5729c20840c1
MD5 febd7ce76346134c12ce2e0e76bf98c2
BLAKE2b-256 1ed2979afb7146f18aeb9ccde7de4119c26f0416e30d4d1f3d375f6869a4f68e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad3ed672c28be1dc5fd747e0c34a49a54fa77b8c5f097e20693b73e703b5b38b
MD5 1850d67169bb4de81e5cbc3032f270ff
BLAKE2b-256 287849d589b3405db170aa8ca62032039255e40e3b23f06c93f0254deed149e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 15cf90447ca594f19d658bb518a9b0d00d52333d9684b4c6e29bd899a0c30ee3
MD5 0066c106485b92293f1524b55a935ecb
BLAKE2b-256 5c5d3f2ef50307397457d30a7fbc6dabfed4109c592bde24684a1b96cc41b3c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35daf328e18553efef522609c8d5b25ba59c1e2ae35499242337ac38f0ac4db3
MD5 995ca90b7c5e855e7986f2c8af1db6b6
BLAKE2b-256 7b136693d2b9428b145b03a39cb2a441f2a10ece52d9fc3628be08d1393b2cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8c9a50318a2754c1a7db6d738c31c31d754bec3d768af6002495299fa16d43d
MD5 63c3707feb925ddc5436ff9a0cd7cb89
BLAKE2b-256 e8aeb60c855a107aa5fee8b59c006f47748986d58cfafcea5f84a5b9bd5a9f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa54d337f73e1310026555438b9493b088f588aa8a8b5bebf5dadd9bfbacbdbd
MD5 6cc68fb98840352606f9b0acc5071fe4
BLAKE2b-256 6459797ef952cd22ea9f5c5af1a880af63d2e6bfd7fe04790a3458dd4a44f481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 533f00224def3f1182a63654d1ec6914c6401f0c578465cb07266eb9f88a399a
MD5 b8160b42412a320120badfd19e57df23
BLAKE2b-256 cac2880bd207a95379bd36e58ae0fb5187245ed1a35e43b5b1dd217832f85057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1045c75e413c80d70c450791b36ff1eb5b05875d68701d57398c2c1c902702b4
MD5 19a10c778a1a86708900bba7052eb433
BLAKE2b-256 de25736617b96641665acfc65a5a46f0dff334441f67ae5f577e9d1d9b5ce729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e85f545f69737af7395942d7fd7936cdb64e60afd1a64ba77f35f412f53b8482
MD5 ba54ea93ee44369aad5bbc61ce1c47a6
BLAKE2b-256 e205fa2f3dacb1e3b13e76d64215a652dd8ac6f2c9b41d3601fca73a01007b0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 460416b9f8637d8e50da4a8d7a73b2c0971f89024faf4a96297a1fcff35e010c
MD5 567038b7dad740a34fd03ae16055c620
BLAKE2b-256 71d47d93fd829437c31cd35fb32a1194428f6f334df972246cb103ed6261fa93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9938c93989d61188995186e270eabbc4eb0f07218a415eba9d0767b7bcbc1e86
MD5 2579efe416563d1b4265c915eec949f5
BLAKE2b-256 b9968a93ea7c6d8a259b5ba18b00f6f09a0b56489a4ced6dbbc400dda5c06232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1fa6c6862ccd45f1a9fddc3d26571096f03be247ac34532564596d5a5932c53
MD5 18959bbe794bbf768abe8735da2cd844
BLAKE2b-256 b2d8fa29c2675b65aa6c4284f7a9a68e177045d678c8a3f5130b721a2728082f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 39ca0a58fb376f52bfdb5593079725b83fc8819f2a27119c47762bf6ea1363d6
MD5 1e5d256c0079919b1585debe5eec4885
BLAKE2b-256 ccb72837d710de961fed0c8cd1c56404367236ee5478333383aaff194ca08e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b89bd3a64d3af47db6b9f1c7f94b0753da9ced4f32f6dce5cb68e4a628faf9a
MD5 80b21cceba157d84bd5e2ce2296cbf0b
BLAKE2b-256 f867a3f1c05140f9ed0ca256125d5cd3351073ef7ecacb8e946ddcd684615d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ee2a3a7454d36c1c7490cff0a78a72664249f32abc62365a0aaa994f0fbcd13d
MD5 5de05cf19a7f3d85d7fcfec3aec76f00
BLAKE2b-256 198dbd2942f605f8fc73cd421b44ed6c31abc924e849ffd78a272b9d145d3264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 372aa3a63441d30558d05ebe86ef78d94c1af0cc982201b26e8fae97b0b79fe8
MD5 d5f6740e992396df960aafd1ed13bc86
BLAKE2b-256 51c11287223a961ec7e84c75830de81ed97298cedff5df061bf2e76c53b8df88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61aae0fcf1df9a2dae3999670d71b8554b6d9441f738f7f8f977c8854677e728
MD5 fe9686529128e03ddf81765c02fb372c
BLAKE2b-256 786b6dc34cb6a0cf4463d1d27194f61ac54f967ff993a51823d6f70951a7b0ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b127a4108037144021b8371453a138d825aa2f593be0f76d5f3e7d003d6de049
MD5 17c3bc08875e4f59e96b0ab1cd51d4bb
BLAKE2b-256 70a353f9c511cdd54721600e7b09e44012b9477966f9ad48308f8362c5750079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66d30f92059cc2024898d916313f893a677f006292acf682cf2b6f225006795d
MD5 4f853ef3bf42826cbdda174638707454
BLAKE2b-256 c068d37b3c15893ff13f8c017d1bbad21013d67425c40881379dcac10ffbcd3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 066c380c857f37a52752629bbc1a3f203bdb5ad8a500b99c5c11224f186fda1f
MD5 c75be00fcc33518e3cf46da98c2b393c
BLAKE2b-256 6869baa2aefe4b1c90e47f5d1b94bdf9bf1030bb823b00afa00e61736ca07e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3ccc0c8a7b10579713b87fb1fb3f94317a9a985ffdc8b78d0a91eaba4331ee75
MD5 ac904fcf0f004e6cf59a671daae5e165
BLAKE2b-256 ec05ba728176bc6bae44e1289ef555dea087283212ea02e3f239d2180d4a40ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dbc3a012f91050ea3dc0790ea459a8e283772a2effdfa9631cafa9b2b8cadc5b
MD5 589dd13763aa296c65008a14efa3e03a
BLAKE2b-256 b82c39231aee2afc3077d1b1ac5254ce2284209d4d59166edde60f9dab4da399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ef5d898e2cfe65b24987c314705a7e962231f37ad463f56d72205cf66330df
MD5 8e9cc4c8fb23cb452342f783c1687f61
BLAKE2b-256 8b0ddf9d344d84c17f8595c5d16d7b4c9829a4ce0da17580f1f6907c4ff9c03c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c09a62b0972c428c97722460e99c4f741a5d4fcf024289f54013af9bad5e2860
MD5 6f03c9542d432d27f21713ffcf4981c9
BLAKE2b-256 23c46a5928e3c2716d22935e407737bef961bb58d88cf1557ca523029603341e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2b6f5d468114cf50e3b35a90d85f939b3071c77827aa7682bd9b2cf27a85bf5
MD5 d113951188a8506f83c26abc040183e5
BLAKE2b-256 7335878a7c7017b594532cf6b8e762e4385843b466999e193de407aced251b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ecf1799978a04aba7106e6d52f894b6558280e81d7bd1555b2a18af0297ea358
MD5 5d7e73acacd0c1a3552f164a7f8d5c50
BLAKE2b-256 9894ddb5795d8ae329ee6a8afd875034ebb2b8b6adac3047a7428a2d8509384a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3ed131425997443a339d36035953f353854573118e22aa02dec980a4ab84ac37
MD5 5032d8fb6f5a2c08df7b5b56edb34367
BLAKE2b-256 2cd71408a22d9cecc88ff6612257be568128b1e733bfd34ff44af899c5f1d131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3c6b0703f811a4a0b24666e0efd79a0654a0a75c95143f184e7a82e23e8b255
MD5 4a55081712b7294317b01645f393e985
BLAKE2b-256 16d9a962764f02b7e161345b82f1ee4a66d716895017ba1a906799e111fc4ddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.2-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.5

File hashes

Hashes for tetrapolyscope-0.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ffb6f81ea830459a44f78199fb49bf056a053528511670e9e89c5ab637b8e9c4
MD5 dc221f5d1a14a77a716e017b03ba6541
BLAKE2b-256 30aef296aae3f2d3934ab18806b5e946a071c561a65628b7f165775d7800af69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 312231eb42331984ac0b4da313a63debd7a1f9fd420a34c7f2d7d4ab7fccce2d
MD5 a939a5852f2c3f71804a06b9aed27d95
BLAKE2b-256 4665b82402eff904dcbdd5eb4533e2599e64a9f59fb1bf95187e5df2f329ecd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d8c96ed5898e28ed33b5c757d6e7bc982888b783ee50c1ff98c460db5bae45d
MD5 1a36d4e70174cf429493403ac3ea7227
BLAKE2b-256 a0efac96d6c11628919cd04f79bc159e52b7af5364863a73befd8b753f8a04ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 512098f10b8d52c6e00eab3e049af1c9ec1d4e18a61d145ef406057cfc5ef298
MD5 dabdaad253a7cd6e3367129dbf786bd8
BLAKE2b-256 fc212536f54744afe216e52e0b8e4861d43d9b05dc3985eba892fdabb0de87f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c20634da0bd40be9f66143a6aa295af7bbeb628f184bd966a19b7ecb577ebcf3
MD5 c71759a6a9a1882b332ac99ceb7e0cb8
BLAKE2b-256 e4eaebb829bf8b84b11f86259c4d7be1e52c9f3cf182c6b61d0a9a32044e854a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9620906edcaa1e38ba0deff39cf4b80c610591435a6f76eec0dbf46bdfe03d80
MD5 85d3d705c09e2aa73e6b09701c1fbd13
BLAKE2b-256 4ce6f0d928a6eb4ac4ffc44ba140d009c96aca240a45f24455104468e3b00a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e1ba51c7f201d34c79c63b34bfb22f05f138f344ee1a4f4076b828a26ac27ea5
MD5 89ea389b5eec93e20ebb15c89800e0bb
BLAKE2b-256 b3bf1b4fe6de1669eee0e43c4c950f534d35f536d0c7108ceaa48d8105b2e918

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.2-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.5

File hashes

Hashes for tetrapolyscope-0.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6e16e57a5fd3032551d1c1eadf3bd6aa9374ed49a749f717c300ad916b077813
MD5 012b19daa0d6749b9c2e0d4cd274229a
BLAKE2b-256 f85df1aace5a2ce7d666c631ff82916846069074d296380a7bb7ba0b4f8c4c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61864fdff83e6a8b04b64dca8558bfe228a2c190f916f70495b55e2203283542
MD5 3a8ab9f9e72d3f4a8adfb1638cce4e2b
BLAKE2b-256 4a0ebb42d86272f7cbc628fe3426254b0ffa4f5fc2daf1184581f85754181133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 155eb2b1f380fe070b88ee8c48ecce0eb7bdaf833be03d39139cd962bed1252c
MD5 e0efafd6088b6d1ffc79f4082594eec7
BLAKE2b-256 3af8380327cb19c1e257b7689990469da6964140a6b62b15d8e803c3b5ece993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0bed55634456a327ce1c3a46df318238e89a01f38507329beff7621c7466138
MD5 60aef9cdd7a31fc8392097e97f1ee0e1
BLAKE2b-256 3a89baf9703e47776dba7c310881457f24cf5cbee50b3b623ec0332b06c5c168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a7cffb0febc4df62daeb53599d9ff55ab2beeb1dae7c0a1807c6cf00ad40ba4
MD5 32bebdad14c6fcb6fd36ceb3397ee1f4
BLAKE2b-256 a14442220b7d6dd28b797bc26ae5683a0f9d37a8d4fa3a862757e8997ac7a200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d28360c1951901796082b7a1c4acc73d873e6b67b55d94191ac6010d8132cdf8
MD5 6713346714ede1fc6c80864bfe925c9d
BLAKE2b-256 6e580ffac501eeb5e3615fc9313059ad67dc8d2f08007efc3deca37966406d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 348f4ef58fab65711f7e84f703c761396e17b2a0f137a248e7d81f527436e247
MD5 ab12c0ef908a9f89aca9c3470c2bb14b
BLAKE2b-256 be654953b99f68ee33d6cddb09e127cad33d2141b4ad1034d40b06152360ac49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.2-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.5

File hashes

Hashes for tetrapolyscope-0.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6bbb3ed27aa47d12dec9f6da2d1bc88366f053ac817a7cc20d162d7cad704282
MD5 e769448fb8fe95462ef2354802a17979
BLAKE2b-256 6a393b13144135e73714ba14aff62915dfc4b120285399402cebc408c9db240a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d4e833c74e805adff248ecd1fd9681392b0b7938d1e4dfa2f16d5ac78b48540
MD5 56ac6fb2c1e09df7f4a72393b034e9f5
BLAKE2b-256 c24c7d20466102bd8f861e1b36635761156bad4e0af3e30a85dd9918026059c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae78f6e4d7cef53674396da8aaf378f7309021cfbf7c3355c07f2146370dcb0f
MD5 82ab37ffe1319e083c912835f193dc5e
BLAKE2b-256 2a26e45257b586306af04b5f5d8eb45bad2e5e68673cbdec8715d393b9932c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 559fff0ffbd8a8ceaab225925cf8e7b22e0a40bf296dd644e12a04a3b194744e
MD5 14e4884a16af86c4dffe6993d52b485d
BLAKE2b-256 f83e1c55590c4068d006a7f4eac94d38a0118a5f2bff1771d4b54cbdb2426148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1475599bfbde2ee5c8adc7cfcd9fcd0d97ce414e6e0f327077c428880ba931cc
MD5 3a8bbff525da7d4d1882c23f5642ed8e
BLAKE2b-256 f3cf0702f3dd46f23778c52364536367a31429270226955014d63715a5e58e12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.2-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.5

File hashes

Hashes for tetrapolyscope-0.0.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 db0a22b8b052edfd984762616eb61fdfa7fc4141587220bca4e04a31d2eceb04
MD5 55757249f6034fd8dfdb1aa544bc0bd9
BLAKE2b-256 217b888495e94dbd4a7cefa23dbb68621f558adc3d1efc38c6f1ab14792faad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fea140501675b1bf3d8ba1ca2b2360ddb88b2c118e88e750b6f3d8721d53609a
MD5 178622852a13efe6afce7a8a7cdbce52
BLAKE2b-256 b19c4c6248f854f3c8b255ae1102cd5ba64d7a63aaa47339dd58239a3c1973f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9949f142fe8d5c918a4ff2b027b35b70f8d5dbe0d33bd06e533d43f205076a29
MD5 ae113cbfe8f64f3661b95147230795d2
BLAKE2b-256 6733905c5a42cfa933fdfca5ad282a354529f463070f5a8d69e6f3d8668b587d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a8dac9244595e9a3a5648136ee6acd289fb86269c36daaca1e956b5819b7be1
MD5 5894eee09abb39456eba3cc07decda9a
BLAKE2b-256 16eac50b5e71e48881e32b1ea1c1220fde1b9f8c10cd2861fb27de63d505f760

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