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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

tetrapolyscope-0.0.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: tetrapolyscope-0.0.1.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.1.tar.gz
Algorithm Hash digest
SHA256 47b518fb442789f4ae05df8d93a8946b95206037f137d9aab760af414fdda935
MD5 9a779c752d76faadef0685abf960112f
BLAKE2b-256 b126504964f1c8b60b7e07c07cb0ffdce880bb971094a70d1b6b9e938ad2ac6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 04f2ac6510558d1c05257823540683f665c9e52b0e49a1c4bc363b1283419b88
MD5 73ac1051db49c51e1ae820c29f50e97e
BLAKE2b-256 4e0f7ea2f3c716ae9165cf21ca36d1bb97ccb36c3c9101c94bb80f2058640bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f7944d5cbf614193b393b9664b0fa201ada6e038d62d5433f03eabb91607611
MD5 297f927a1f4e0e4b2881d17a3bd37718
BLAKE2b-256 7501376746d43627debc0b2ce5de923953f4a378208c01d4a63b0d0dd99e1824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c17b565aca5d67a84be87d8d7c5131d3dcd57e8628819c8b1c4f73e4c99f1d6e
MD5 6cdedb2487ea6ffed0116de1e6bcdce7
BLAKE2b-256 409e21cbc42e0e37ccc662eab756b6aa2a94640dd8862c16a51ba43368d8d773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a40ad87222b72d0f997c2341686e4000d085ad3cc0b79e379f9dbe731a90af0d
MD5 71b5fe77b97bd445d2a94cb75bf9ca74
BLAKE2b-256 d11e28e5b199d3c7dd3b287345a4ceec87e67212f2da0f45d1be9f2f3ba34a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6393e6121859ab579ba605fd368d8327918ef896b218c3ba2084eafe9b198eef
MD5 cefc04c0591488ec97eb17522a9af321
BLAKE2b-256 e828e6ee2e845eed6a2231ca88e868c62545c40e6697d23a2e9a1b7edcedd6f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 253f87e0359707291c68f59d6a9a7a34e1a599c6d2bf8a91efcac28e01f530e6
MD5 ce6204e784118644c792a08a8347c9fa
BLAKE2b-256 c6938af42f1871c72316a6f7993403bfcae1f64f85cc40d626f5405cb148794c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaf6a0db82e76d613a9902146df07a4e22fe044cfbe29f4746ae3d1744fcc42e
MD5 219c9d83db0ed09e6e75f7a54865c12b
BLAKE2b-256 bdfffb1366acbbc60251daae28dd43b5adcf29002ca2cf95b3431bca9c16468d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43912cf63b901cacae504c7fecc209cab546d52dfa761a44575393dfd3ac4201
MD5 b2892eb9ae63bc26e98819b9579044e2
BLAKE2b-256 37c9597e57a4195afbac5a3211e6b076f6fd0254a7365bae4e707f99b0cd2b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8592651c4f73bac590e1f5758ba7b2a7fbd33b9e0f705739add1d7ecfedd4988
MD5 290d4e98f0ad20f69cff39a9ddb76fc8
BLAKE2b-256 6caf0d417a05e0f2069de7df01454cc7bd900c31da85704f2b1fcc4114b35faf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e5a076492d942961a3bb6272284a6d89893fa22ef9e5ba3b5276b42b1917ca18
MD5 f59b3415c865ba7830dc49105e7a81d5
BLAKE2b-256 5792e6e8115d07dbf30915a0f990cf649fe7ddc2d1dabf08744503a64161a059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3de9d0d26459699371036e980b1ba32b6c4547a35143a683276fe3e205d10622
MD5 36bf231e0e373d45dabede435b17100d
BLAKE2b-256 5ed81735ac9e17d6985b91882a0547cc05f688f0d10291c7bced90c4465ce9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5ed9c4e8ee174beece72d1125548b7900405529e180c4cb127d8f1b89edb565
MD5 4c295882f19801b4ae3df47e589555c8
BLAKE2b-256 437d02895b82f3b3a33d530177581ff2fd81ddd10c2a5e6ed51d1ff3094b4377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c59603c815004edf9c7351c7f88d4209d7aae8e5610b749aa76e7acbaaea7d8
MD5 95ba3fccceb46c55aac69566ac0605a1
BLAKE2b-256 4d43eba2b20ce9c08fe9eae0627e239c2f568d43ee413c87175f45d26d9c7c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f837d9560454008388f6196a1adcbf2d36d95c668dbce4f088abd2f2a1700c38
MD5 57fbdb5516a3fb2a3e8e4a5c736a51c6
BLAKE2b-256 b36adadc572e8c4bbdbb37c849f60e54ee4a5e3e77ab0a1083cbd0fabd1fb4b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31c45f389b8c7c56cb7c1825b2ad5648abee458029ef4e191939edaa73eccd61
MD5 1b23528e7a842a0e488a08e9906970f5
BLAKE2b-256 a75abbfb65848c61adbaeb14310288fc9933849dc33100d00862175e5616fd0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8f6370b4dc5cad62ccbf39fda6a4968947101c743235071fcc1c0a92065a9972
MD5 3ed74dca4de6e3e4b45dfdc99eb7d9d1
BLAKE2b-256 2ff6d6bf5f7e13de55e95d97abcff02e049f18c1ded5578678cac2fabd72672f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6ee4ce44f0f45206fb5101e7a1bb8a051a5608adb035019894457600ee05d2f
MD5 629512ed97e5da1492cf0dc1c90d5173
BLAKE2b-256 0fc5da0fb872708ff07b659d0b86b80630774c7745e00fa3ba00cb7a973f894f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 984a572484f436c477e80b9d76617aeb8ea1f3f31ad12ed3608900f61ce909a5
MD5 28db811dd0f869660efa04f3f58e396f
BLAKE2b-256 acb4b74968f88e43a2a7bba06c2358f408cf35413387446fbd1c70e9abf955b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ab29c1ccf047042a01cac1015a227431f0221dc5dc7e5007541ea24553c935f
MD5 d80be85b0c5ae8e5d2fd97c51178c4e1
BLAKE2b-256 62ab66a109f676b7a1a96ba85dc12715c19903e6332f60e49d0a7a6645fcd284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1bb84e0bd13cb65d340499ed85e5877ce774566578cad09919c3d7e497cac9d1
MD5 8cb3a89a5c33f625770a932d4c131f1a
BLAKE2b-256 7370e1d115d5403017a6951427fca96f0e4cbf6e96cc35f14dde31399d459777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e374f50c5d1303f155fbcb2a6dac7f2a90b691efe06974c631ff9d5f4a46c220
MD5 dca72526f4d229de40e386838f7a4947
BLAKE2b-256 2adeb778e72a8a7b838431cb57fb26da262b1d7b64982efdc61306967654f4b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8fdc24deacf43a0f926c9044e2bbc04f8f24c2be4f9e3b2069c935099e7a8d5
MD5 b54064bf48d91bfebdadfbbd61bdc3da
BLAKE2b-256 4e0cafa565c375ae1ffb4baebcf6b9ba2aa2588f817f4bf2d2269180ffbfa8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed25c71fc46ff94a602ed806261ae2fd613eeb79bfc4c283ad5175e5e135297e
MD5 bea9b619fd1cdf067b53a631d7a9d120
BLAKE2b-256 dc4020e8eedcbbe638e6c8e65f74f39425722cc488f275af0c0317385103d51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7f0ec0fa85a42447f75d79c1a2a369c5c23c8c8493baa102b2cf321238e1b46
MD5 b50a35ae26d235b8720946f772933ee2
BLAKE2b-256 bb819297a575c4c8d83ecd4427a3c0d4416ac104e8965a41fa656a2dec15f93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04d1c0b129fc7255d452b035a54ce5038be167c83843c47551ef160932122524
MD5 d83cf2a061e2b9e7c63efc1f20246713
BLAKE2b-256 307cf889cb5eb4c6e0d15e22150c4eca13953e334e68c9ae4026259d3cf40935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f481582a0fc81b66b0c8cc3a78bffdd766a41a8c52a0cea02bb49f85c8ce27fa
MD5 ae5357440a7fce5de64b987ddf038431
BLAKE2b-256 fe7bcaf24e4408cb65c9370ed5ecfa207f4c00f3dd821d943ec4d8fb644d57d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c69f7574264a46d5defe4e76ca4930eff4ea43b549909f1de1e38886d28fcba
MD5 5eba490ea5c095623a59bf91cc6d0eb1
BLAKE2b-256 460e0f1f551d994ffc71425c6997623cd201fb683590ba272ce6ccf7166a495f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 35796f802f5f11cfd72e7c8ba549a3742aa60b6102c72046c2aa943b5c957a04
MD5 68d07d2d229019ec1138c84fa24c5889
BLAKE2b-256 b4565f6460406bc5b0d0afc8b8ccd3c716e2a7969738c86a8e3334e957eec83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd7f5efd8ab76340ce06856781498f26d5cf77caef637d571856010ef8fceb7f
MD5 e2f553930f301874dba141e0f0198339
BLAKE2b-256 fd67186bddc2877f04a8b1cd2d5dc5356100db728b17bfac75d9356192240d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b18e8f59f1aece38e1ce28bb93ecc3c5d2b39582b008eb825e4f5013ee427ca2
MD5 639ff74d311b245aada51f22b236ee43
BLAKE2b-256 0a392701d761c7b0942d2b5de776d26b0f9ea3ed43709e59f3eeee9b1c801cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec46e34c6a4f7aab9c54db475fb97bc32e6462fc8b99a4b89227320651a83e69
MD5 ba89e4a0689d2a402cacbd5e23872b35
BLAKE2b-256 3eaffa011cbac7c52e7bd017993a732787ea719338ebdcdcef72de4194e50beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83656afb02c4cbbc1b7935e5df903a24d020f4050473b6a071b0ef8c303f4bff
MD5 96d44ed5aa1111af94f2eb57f718834f
BLAKE2b-256 e30f65f7a481e31e52c76a3e5dd6086c6367892175ef5106eee40ea503a5d5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 16e2453076fb095ec13c64c9cdb1dec31c521dbfde4a94fd0148b14b6b67eda8
MD5 9861b7835167211a28c6ff63289cd746
BLAKE2b-256 6bdc51845ea7cf838344f8f7a02e55a2bed8a5ab5dcf993b75f145c5829e7a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8cf00d500523ea326b0856906da56c3f2d5229c07b41e271e99b4fd0abaff07
MD5 51808de132aef84e698232421399769a
BLAKE2b-256 bd8481e41745bf9ec795fcbd7e4a5513dcc88ff149b281e6f1a0a254d3151c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 27f239b8566770a5011665275ebf666996b2d533c74d1304628eb058f855f307
MD5 a4e9859645199efa8a578e1bcde3a6ef
BLAKE2b-256 594f02899ed388651ec9bdcf93c38962b79a315ddea721b6d103af0a1e552d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e88ca53e41b9e30bdfc86783ddf3e625806c23b4b5d7d764dcd24ffb67968e7a
MD5 b3f9e678ca939d13efc2865ec8edbe8f
BLAKE2b-256 2e9a5d163baffa0416e347882ae139333e56947802dc8ace45a8d7698cf416f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b8a5978377d7234614f65572f37864adbcfbf90649df1c859b5a56be4d47406
MD5 477a45e6b37d88e0fd35e2d51e326fbb
BLAKE2b-256 b645a3cac2c98628f02c9313002720b435ef47d40a91c9bfae013fbaf373de21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83ee038e41929bed088ff41122c589cffbeefae9e3f523225564f1631bf8e2c3
MD5 c66d207f49b4db0c35d77ae9f8498e59
BLAKE2b-256 88533ec8d2819dab97e8a571cc5ff5a18762c7b165a27ac4db3cb64a1d68cb27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 291bdef60ebfe6c739eae8c897c9db43848526b245a679c620711ce4b91b2980
MD5 af6b4a1ed33522353297c55c473a6787
BLAKE2b-256 0440c48fc3fed46a5bb60998c4643f1b94af2d2d6bf808551d7d03c0da5d759b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4090f244b6433739ad410a37d1e687fe8847d58437d80dde7f4104f82e288fed
MD5 422543126ff39dfc26a2f4d5abd162d4
BLAKE2b-256 db9fcf5cc3d486955a0cb209b06aa5e2b8817317b9124524bfc153b142cef7dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 72ddfda83e75106bda7048db06751b99f738c6199bfcc92ba524eb22ce8f7f86
MD5 cfa5814706618539becd10d389e68348
BLAKE2b-256 277c457c8a9089f47d8bcd9c438bf488a200de32741ef4a7e62c4184e403ae7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1246c344530d231583438d681c85966d4afcc1a18d231d75740fe9cd3e097bcf
MD5 f0de882a3c1071e67f902b754653af27
BLAKE2b-256 ea8c6e45f3e616dbc5bd4d063ec44df066111bdac06aa404fd048f8863b143ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8ee6c125c8be026f41c03412333ddfb826848f5cef18aac34ced5c696638517
MD5 3393c535e22d69323df8a29d9d3c7106
BLAKE2b-256 3c836817042e9a11008ea6fdf0f6450a134defa5773b916cbceb5632d7f152f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29d9876a4bff4f7b63cf6a2d9dc29963d277c0aaccd6f6e14200e11c9ef6891c
MD5 c7cd0c2bf0e07693bf2bf6ff08afbb0a
BLAKE2b-256 61d84cd87936d098fa63dfed4f6354bf135a2c42b7644bfd5194ee587cb2d3ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 479fcf988ac5f047df124cab2e9065feac71f3b92fc457fd0aa011cf61879aaa
MD5 d758bc85184d0de264afbfe73546315c
BLAKE2b-256 a9e64a8df82635064935ece688aff25bba0920978a57f19d0344ccb52a9129e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44b5ee0a606788c5552bc66839532c68c8f1914c774651ae644445571ec79f03
MD5 4d7f0f90b3852b7845a6f2267fcc3221
BLAKE2b-256 e34f6d31a805a5f23e20dea5ede1b05c1d4eae0934ee25d762a9cf006a7906b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 acaf97280949e6f1d48346cbdd5209ed014db17e77b0f920739f83ec2a0a711d
MD5 2673b73d7fc2c3866756c0b69dc6c9e7
BLAKE2b-256 f5e549c5b4b3b3f974bfeade59f306a81db41bb523fbb97d83820dfcb44aa9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3b9b0052661b4767fa1822872f0e51ae707927447672abd57e6ce667ad4ba4a7
MD5 d5df62b163b17435554289d7a7286a6d
BLAKE2b-256 7ac921e3662f78ae2ef1fddd0544cbdf4c35e557c8d27aa041c75a3fc2dba148

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2c0e26f499b5982a8210537578ff97b7fd05e88a2114c66ea2247590fb2af90f
MD5 3bddc629927ab37043a744964e2c9b1f
BLAKE2b-256 15c05ed64867d4c840a50c7a46ccd237ac5ac1ec663b6e7a477f75f8c26042cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6a3f18bd49b2176bcf252e3b37c98d6d7d60efee69d05981b5bf1cc137b94f2
MD5 f1e62df3ce35353eeb8c7463466535f5
BLAKE2b-256 0ea4f080b7f0f985176774db062c5c0b02a2ceb12bc175b3c3a70a4772be1838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ffac355c06f9052beee568baf0c4d77fdef2fd32f137d6ff8b87b3c499c769d
MD5 c42f8f215be7e457528d82266a9fcd0f
BLAKE2b-256 e6f046275100611785c0961ee138ae18cb3afa229e603b37c0a2bed7f1c1aac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3face163ab226c4d75260e8b2ed6833b61100895921990d3f0d5689b1e4ee3e
MD5 91d613e05352c00acd1a2167ccbf03d9
BLAKE2b-256 a9bc43180ecd915448f4a2806f6463294eba50294d1c6897a8a2f59accea0b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac3153aab998f3e7da313b0ae6d40b5b1e2858f6bb70b53e333208a234c0d0c9
MD5 9f8e70b517ee04a8645752541fc95851
BLAKE2b-256 12007f53d01c5a615f585e729afb53d69caa973900654244678ce7e4c693cba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 214a89ea08123ef3dcbfb3f0e831fe4760332aeb999a2ba956a4555f27b2cdcb
MD5 1697d9f4cc30a2635fdd17c5dcb6a335
BLAKE2b-256 5e3822288941e3ea558742d64d83b337eb4267fdf0c93515ffbc2b1cefc3384f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 459b53eb6f08e9fd0d417763ece5f0afd39b6e8af6ff79ab0dc1c7a8843c98ae
MD5 09d81df758c33ee9164eef27ba86558b
BLAKE2b-256 4602dade2e0b207f9768333ac2ca40aa586b26ccd3a41659fa489b4083fe8460

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 80b008a7a1725dc26e7686d704008838fad01e5808fdfd91da9bbdee630b3114
MD5 2efcba18b30453ffdba4df62b010ef47
BLAKE2b-256 1ddf5533916996f6d203bb9a9da1a5951c80800c501abf7819e0d60b160b3516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bca24b7c5187c8d39e7c118d3e9104a6aaa3e89a4173b18da25364f492224e6
MD5 96f0b5f4742a126a206df00c547bb727
BLAKE2b-256 5ff2bb593bd80bf3735919b6cd297c65d51ce73ce18f4b31f9708fc874e2365c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c06ce19c493662d77f00769e1d2edd18324c6183089fc0d7a99cbc8df7eb42f
MD5 387c27199044bfd05f75b170bfdda2e3
BLAKE2b-256 c658716af1a1ffe31370f1a2aad5577ce39f75b824b4b6fc9acdfa8de9ffcd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc7a8315d4ead000d6c2793765e874f0dd1a28a04d7b173dacddd1a871aa298c
MD5 400ff524135c5dfe997319789b1f5b10
BLAKE2b-256 afa0991649ecdefd189cabc015ef2b0cd039cd8c18cd8645fb31d831df13d1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 78f3af0f3471cb23511969eef8dae793300a681709d04bb213a4f697ba978093
MD5 26e7a1b210856f5fbcbcac906f5bab9b
BLAKE2b-256 09db1b11203d700141813b903900ec86752e416a8d6bece5644c7e6f6e4b365b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tetrapolyscope-0.0.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ae96578e709a480a69ba94d40b17bd047f5199142bc8675a1ec074ed45b055f1
MD5 ce569a0a0375b0838d376ff8a8879012
BLAKE2b-256 340dd71e3926dab408f02726265125ed2b1cc51c5e3a5a8065f3dd9d841b81cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 547deb699d752d536b8249cc4f01e4914bd6b8b160632c835300ec7db908233a
MD5 53144330690135e2e4d97332361ff4e5
BLAKE2b-256 15ea83db4c1ce79e0dae3bc0d9b63f15726e9ba39ca748db68460897cc8bcb27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d921a2fe4945b958dabb78deacf0ba78a8bef7c85e6374ebb3ef95802be0cef1
MD5 2406dbec28648bcc7f92ebb5df3fa7dd
BLAKE2b-256 fe9cb4dfa392630e435c3bcce08c37b7393a6de3c65bc013b73285b686197f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tetrapolyscope-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92934f6e27723dc5ce515eb89ad493619e654ec4de673e25198ea93267e88ad1
MD5 7866baa116d5ea93fecf2d5f81089707
BLAKE2b-256 e1766da8d3033b15fef25ff461ba30fb429906154192aba3d7a430927627b84d

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