Skip to main content

Polyscope's documentation is hosted at polyscope.run

Polyscope

actions status linux actions status macOS actions status windows PyPI

Polyscope is a C++/Python viewer and user interface for 3D data, like meshes and point clouds. Scientists, engineers, artists, and hackers can use Polyscope to prototype algorithms---it is designed to easily 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.

Release files for polyscope 0.1.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for polyscope 0.1.6
File Size Uploaded
polyscope-0.1.6.tar.gz 6.9 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for polyscope 0.1.6
File
polyscope-0.1.6-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
polyscope-0.1.6-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
polyscope-0.1.6-cp39-cp39-manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
polyscope-0.1.6-cp39-cp39-manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
polyscope-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
polyscope-0.1.6-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
polyscope-0.1.6-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
polyscope-0.1.6-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
polyscope-0.1.6-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
polyscope-0.1.6-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
polyscope-0.1.6-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
polyscope-0.1.6-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
polyscope-0.1.6-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
polyscope-0.1.6-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
polyscope-0.1.6-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
polyscope-0.1.6-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
polyscope-0.1.6-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
polyscope-0.1.6-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
polyscope-0.1.6-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
polyscope-0.1.6-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
polyscope-0.1.6-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
polyscope-0.1.6-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
polyscope-0.1.6-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
polyscope-0.1.6-cp35-cp35m-manylinux2010_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32 Details
polyscope-0.1.6-cp35-cp35m-macosx_10_9_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64 Details
polyscope-0.1.6-cp27-cp27mu-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64 Details
polyscope-0.1.6-cp27-cp27mu-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32 Details
polyscope-0.1.6-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
polyscope-0.1.6-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
polyscope-0.1.6-cp27-cp27m-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64 Details
polyscope-0.1.6-cp27-cp27m-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32 Details
polyscope-0.1.6-cp27-cp27m-macosx_10_9_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 68.1 MB

Release files / polyscope-0.1.6.tar.gz

Download URL polyscope-0.1.6.tar.gz
Size 6.9 MB
Tags Source
SHA-256 checksum
How to use checksums
4a040de27d65135e7caed1d3030e8299be363743183b4847ec229afcc67a3b4a
BLAKE2b-256 checksum
How to use checksums
033ba68d346ac6d03bafbd10ffb4076418824f51c32d1de254fad5741d5b5669
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp39-cp39-win_amd64.whl

Download URL polyscope-0.1.6-cp39-cp39-win_amd64.whl
Size 1.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
18ecee689a0607a42d885bc8226b06ecbf7704ae622cf1c0517d42aea1197612
BLAKE2b-256 checksum
How to use checksums
373fe81a3553e51580cda9e7422ffeb048f30e2afa4c25a58acca9333fb25ae4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp39-cp39-win32.whl

Download URL polyscope-0.1.6-cp39-cp39-win32.whl
Size 1.6 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
9a690a92515756852b3ef2dd6b3f06eff7e4593d812b6b964f75229103a7eee2
BLAKE2b-256 checksum
How to use checksums
eb251b7debb740da866cad20c69c275d4c7b9eead43381781e49b3cc681207fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp39-cp39-manylinux2010_x86_64.whl

Download URL polyscope-0.1.6-cp39-cp39-manylinux2010_x86_64.whl
Size 2.1 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
c5df1bc2539cf22eba82e3f689e03754ee991eb683beb8ad501bacbcedb98c61
BLAKE2b-256 checksum
How to use checksums
c89194727676e58a9136e55f966a0e3f4acbb8c2804380c2429d22797b8eee3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp39-cp39-manylinux2010_i686.whl

Download URL polyscope-0.1.6-cp39-cp39-manylinux2010_i686.whl
Size 2.1 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
99db52f3749832252d0dc145d3a74e54a8e527a404b626bd778fbe5ab4cc4459
BLAKE2b-256 checksum
How to use checksums
987d5209040c5b0873d56e9765428bdb76c971ee068a523d58b5c00448b11fa4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl

Download URL polyscope-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
56e44a6e156f903b7203a1ef821e4e39f1594582b605dc0bba59e1abaa9afa64
BLAKE2b-256 checksum
How to use checksums
32b60e318bf394da4f7e24854a8d2e44b330f364084c64553841724188f8869c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp38-cp38-win_amd64.whl

Download URL polyscope-0.1.6-cp38-cp38-win_amd64.whl
Size 1.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
1b814a1f0a31c60aa08d5e29a2f132c4c3cbbbdd2470f07499ab69ccb3075dd5
BLAKE2b-256 checksum
How to use checksums
82e236a16a336e88d9cdfb492b40518e38b343659049f6142e2ed1545a2823ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp38-cp38-win32.whl

Download URL polyscope-0.1.6-cp38-cp38-win32.whl
Size 1.6 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
b8d5fc2bab2ccc353e13354698a08de1f5cb5181490dc168ea6bc2d858e6543b
BLAKE2b-256 checksum
How to use checksums
11e7b70f364d1860258d81d12eac4528a63b2f8588517a77ca358b2afa21bd01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp38-cp38-manylinux2010_x86_64.whl

Download URL polyscope-0.1.6-cp38-cp38-manylinux2010_x86_64.whl
Size 2.1 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
e75df82dbb08389e2e60ad4a960f6cc72103864115759737c60571fadfbcee1e
BLAKE2b-256 checksum
How to use checksums
5e64b3edf2a03d4e0cd1aeb3efcce6f866b01f8282927da583cfca1caf19002f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp38-cp38-manylinux2010_i686.whl

Download URL polyscope-0.1.6-cp38-cp38-manylinux2010_i686.whl
Size 2.1 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
de8a837a943a80353da6a08c2e4a48f55fd28a61ec6bf4f07ee212f6eba97e4c
BLAKE2b-256 checksum
How to use checksums
45cb2271560f0f738bec27a05d7160ee021da26b9177bdbc14ce421b85da78c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp38-cp38-macosx_10_9_x86_64.whl

Download URL polyscope-0.1.6-cp38-cp38-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f0f399fdd7b33106e0ff88a2ec4158baae4950190aa2cfd67b779e331481bc03
BLAKE2b-256 checksum
How to use checksums
41be8f391449eee05e94b21b3f0762f29fbf6211e3fe976f4d3d47e6de29835f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp37-cp37m-win_amd64.whl

Download URL polyscope-0.1.6-cp37-cp37m-win_amd64.whl
Size 1.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
fe4c91e75f938c7b6cc08862b05e38b7807da9c842e849a84c618278f1e0bddf
BLAKE2b-256 checksum
How to use checksums
c476acb519cd62c074be23d1038c528e7bdd790ea828c576683dadc92c348459
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp37-cp37m-win32.whl

Download URL polyscope-0.1.6-cp37-cp37m-win32.whl
Size 1.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
fb4ebe880d3a86e855938d66b931e4fbcab4731fc333b96f8575de479ae38360
BLAKE2b-256 checksum
How to use checksums
cdb94e6ef306a3ca60d21f50981efa5a02acec3ae5efd1581c8a7bbfafeabcae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp37-cp37m-manylinux2010_x86_64.whl

Download URL polyscope-0.1.6-cp37-cp37m-manylinux2010_x86_64.whl
Size 2.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
02c1af3c253e57fd30bd99839f568504bbc5cba87cbe06679797ca12a7594e4e
BLAKE2b-256 checksum
How to use checksums
b5e2fb44b37493e01a985d153cc94d5910c2ecfa4e67cc5eaf7119b409844713
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp37-cp37m-manylinux2010_i686.whl

Download URL polyscope-0.1.6-cp37-cp37m-manylinux2010_i686.whl
Size 2.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
1052b10c829ba5ec1619c7b7e57dfdfabb770083769b225ad4b141a5add1a936
BLAKE2b-256 checksum
How to use checksums
ba09079862394d43eec89671844b1e98a5770dedc49ec9a4c0de161de3c4b815
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL polyscope-0.1.6-cp37-cp37m-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e824e9a9d4593fe60cc0e068e5868cf55129ffc73240f6303316deecdf409e67
BLAKE2b-256 checksum
How to use checksums
be8cccdd62b601cd380a51ebcd45cfd8b3314ee8ee29071ac6f033f68a3dc2a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp36-cp36m-win_amd64.whl

Download URL polyscope-0.1.6-cp36-cp36m-win_amd64.whl
Size 1.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
b934ba1da49f691b65dd9e496d56388a05ffc5c596adef7e9647ecc2b11b43e0
BLAKE2b-256 checksum
How to use checksums
d2cbfdcda448cb617f69bc7aecfbdeea128b275840bdacc853624826baff68cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp36-cp36m-win32.whl

Download URL polyscope-0.1.6-cp36-cp36m-win32.whl
Size 1.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
ef28dbca5448c7959eb6fabb978e78188b70c845fbf4f90bd399b1de96308205
BLAKE2b-256 checksum
How to use checksums
096fa3207f94494a67b350a2e12b5b71923c3df7c5b0ef14ee551fda2d047c33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp36-cp36m-manylinux2010_x86_64.whl

Download URL polyscope-0.1.6-cp36-cp36m-manylinux2010_x86_64.whl
Size 2.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
9878af7601e9c616d9ed7762a47c42d1f2f929406e6a0f89f44be7cbb7b99798
BLAKE2b-256 checksum
How to use checksums
0688b008fc60c75257653f715fa32bd8f47f31397672f03f1f7acfe6a6bedf81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp36-cp36m-manylinux2010_i686.whl

Download URL polyscope-0.1.6-cp36-cp36m-manylinux2010_i686.whl
Size 2.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
6b8c01c00bbf65c09f91cee41cdcdffd7d3878d092d999c3a193af400a82237a
BLAKE2b-256 checksum
How to use checksums
0681f1ee74fea93feab56192f6b8160b329c06005d28e3e6eac0db7616170bcb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL polyscope-0.1.6-cp36-cp36m-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9e3b9ea84bed0475caafb0e22b9c8e894b56e37fe876560cd638dee8c17ff7c4
BLAKE2b-256 checksum
How to use checksums
de9f39173104e974098f3cb5b399fcb48befd11e9ad6e84813407f935755357d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp35-cp35m-win_amd64.whl

Download URL polyscope-0.1.6-cp35-cp35m-win_amd64.whl
Size 1.7 MB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7489082a1242a69ef91943881655aa47d60d1a629443c2012368a27c580a5ee1
BLAKE2b-256 checksum
How to use checksums
8432c49c6fefdf6c19ffa728fc88540ce97d105ebdc675ad81a7316e74bdf7c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp35-cp35m-win32.whl

Download URL polyscope-0.1.6-cp35-cp35m-win32.whl
Size 1.6 MB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
2118ddf5d5539e2236c873d4fb137f103fa7ad8c5d07d57ecfed4e86218a3b11
BLAKE2b-256 checksum
How to use checksums
19b637a91333e66862920cad96c594b909329e11c6f1323140505cf378e22b7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp35-cp35m-manylinux2010_x86_64.whl

Download URL polyscope-0.1.6-cp35-cp35m-manylinux2010_x86_64.whl
Size 2.1 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
10fdc8676a50beaf54f52fcb12820bb84956d9df425bcd0b445ab8987448964f
BLAKE2b-256 checksum
How to use checksums
94a8c97c32d8083082e5779a284f7bad1c908e6bdc121779e4d5563638f4f33d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp35-cp35m-manylinux2010_i686.whl

Download URL polyscope-0.1.6-cp35-cp35m-manylinux2010_i686.whl
Size 2.1 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
6138c3b38bd678688e6d1eaa731a3211d21ec3a8b6500de36ab0d7958654d214
BLAKE2b-256 checksum
How to use checksums
97d2f7650cb735844deb9a05db8c39255b8c09b6de13835fb750f9096ba34d60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp35-cp35m-macosx_10_9_x86_64.whl

Download URL polyscope-0.1.6-cp35-cp35m-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
83eadadace55b726114a2d003b739eeb99481479100c8bd2bb81205fba651426
BLAKE2b-256 checksum
How to use checksums
4965eb895fb269c3b6f51b453643afcfb98620f45a2c28f4874bd193a047d909
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp27-cp27mu-manylinux2010_x86_64.whl

Download URL polyscope-0.1.6-cp27-cp27mu-manylinux2010_x86_64.whl
Size 2.1 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
6db38b55bd85fd5a5b0482dbeba38242a63423329a53cb5200adc2f6dcf07f05
BLAKE2b-256 checksum
How to use checksums
c21064517d6e23e5ee8e8e9a478aef2ea61bec720511497571f230b97328a7fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp27-cp27mu-manylinux2010_i686.whl

Download URL polyscope-0.1.6-cp27-cp27mu-manylinux2010_i686.whl
Size 2.1 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
33273ac9c9af2ae29572616f37aca1fbd50dcee7402a524fc5fd1f6e8411d9c2
BLAKE2b-256 checksum
How to use checksums
e1d63e5299f6fd93282ad6ea4507550407df0c9fb6475ff22ae5ef3411d57a89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp27-cp27m-win_amd64.whl

Download URL polyscope-0.1.6-cp27-cp27m-win_amd64.whl
Size 1.7 MB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
72fa3083a7c2d3a73bee9af04e06c47d13b98556125998c5cb86bc18320a0225
BLAKE2b-256 checksum
How to use checksums
8d442fed6a1be181561364851a4d0c21fc0f07fdfb7c065db7f2b468a0d62946
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp27-cp27m-win32.whl

Download URL polyscope-0.1.6-cp27-cp27m-win32.whl
Size 1.6 MB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
13c5f308b5586aab23d27b670ef9f5c9d376abb67a743c67afaca81a46ac3f0d
BLAKE2b-256 checksum
How to use checksums
311db2e2060b8c45399a616c72805d41800e16ee27ca9863062cd9dfd0cd27b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp27-cp27m-manylinux2010_x86_64.whl

Download URL polyscope-0.1.6-cp27-cp27m-manylinux2010_x86_64.whl
Size 2.1 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
73f623c61fa33d30cfd18530e0c559d79122a5b2f1e5724a013568640813e6bd
BLAKE2b-256 checksum
How to use checksums
4a7a6ccd6cf01f821ea8085d8e0a0dbd73ba4487b1cbfbc204efb965c0c08359
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp27-cp27m-manylinux2010_i686.whl

Download URL polyscope-0.1.6-cp27-cp27m-manylinux2010_i686.whl
Size 2.1 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
1c081a1e25199a71e9b69a55aaff48d1442fbd0b8ddc81c6ff9836fc9be47589
BLAKE2b-256 checksum
How to use checksums
7e682f3ac1346291fabaa07057629332807f1b36de0434e1917db88cddbe5cc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7

Release files / polyscope-0.1.6-cp27-cp27m-macosx_10_9_x86_64.whl

Download URL polyscope-0.1.6-cp27-cp27m-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
36bce27791dff69f9b8fc875ec2b8be0c49fe1686f2890c01c1848cd46138106
BLAKE2b-256 checksum
How to use checksums
808cb5786026bb160b39ccd477476777b67bad6438acd9d99c9ca02eb8ebf5a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page