Skip to main content

Compute cross sectional area of 3d shapes.

Project description

PyPI version

xs3d: Compute cross sectional area for 3D image objects

import xs3d

# let binary image be a boolean numpy array 
# in fortran order that is 500 x 500 x 500 voxels
# containing a shape, which may have multiple 
# connected components, representing e.g. a neuron
binary_image = np.load(...)

# a point inside the shape (must be integer)
vertex = np.array([200,121,78])
# normal vector defining sectioning plane
# it doesn't have to be a unit vector
# vector can be of arbitrary orientation
normal = np.array([0.01, 0.033, 0.9])

# voxel dimensions in e.g. nanometers
resolution = np.array([32,32,40]) 

# cross sectional area returned as a float
area = xs3d.cross_sectional_area(binary_image, vertex, normal, resolution)

# optionally return a bitfield that tells you if the section
# plane touched the image border, indicating a possible
# underestimate of the area if the image is a cutout of
# a larger scene.
# if the bitfield is > 0, then some edge contact is made
# the bitfield order is -x+x-y+y-z+z00
# where - means left edge (0), and + means right edge (size-1)
# and 0 means unused
area, contact_warning = xs3d.cross_sectional_area(
	binary_image, vertex, normal, resolution, 
	return_contact=True
)

When using skeletons (one dimensional stick figure representations) to create electrophysiological compartment simulations of neurons, some additional information is required for accuracy. The caliber of the neurite changes over the length of the cell.

Previously, the radius from the current skeleton vertex to the nearest background voxel was used, but this was often an underestimate as it is sensitive to noise and divots in a shape.

A superior measure would be the cross sectional area using a section plane that is orthogonal to the direction of travel along the neurite. This library provides that missing capability.

How Does it Work?

The algorithm roughly works as follows.

  1. Label voxels that are intercepted by the sectioning plane.
  2. Label the connected components of those voxels.
  3. Filter out all components except the region of interest.
  4. Compute the polygon formed by the intersection of the plane with the 8 corners and 12 edges of each voxel.
  5. Add up the area contributed by each polygon so formed in the component of interest.

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

xs3d-1.2.0.tar.gz (26.3 kB view details)

Uploaded Source

Built Distributions

xs3d-1.2.0-cp312-cp312-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

xs3d-1.2.0-cp312-cp312-win32.whl (74.3 kB view details)

Uploaded CPython 3.12 Windows x86

xs3d-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

xs3d-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (115.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

xs3d-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (80.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

xs3d-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl (84.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

xs3d-1.2.0-cp311-cp311-win_amd64.whl (82.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

xs3d-1.2.0-cp311-cp311-win32.whl (74.9 kB view details)

Uploaded CPython 3.11 Windows x86

xs3d-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

xs3d-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (124.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

xs3d-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (115.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

xs3d-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (82.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

xs3d-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (87.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

xs3d-1.2.0-cp310-cp310-win_amd64.whl (81.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

xs3d-1.2.0-cp310-cp310-win32.whl (74.1 kB view details)

Uploaded CPython 3.10 Windows x86

xs3d-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (117.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

xs3d-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (123.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

xs3d-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (114.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

xs3d-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

xs3d-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (85.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

xs3d-1.2.0-cp39-cp39-win_amd64.whl (81.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

xs3d-1.2.0-cp39-cp39-win32.whl (74.3 kB view details)

Uploaded CPython 3.9 Windows x86

xs3d-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (117.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

xs3d-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (123.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

xs3d-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (114.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

xs3d-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

xs3d-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

xs3d-1.2.0-cp38-cp38-win_amd64.whl (81.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

xs3d-1.2.0-cp38-cp38-win32.whl (74.2 kB view details)

Uploaded CPython 3.8 Windows x86

xs3d-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (117.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

xs3d-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (123.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

xs3d-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (114.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

xs3d-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

xs3d-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (85.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

xs3d-1.2.0-cp37-cp37m-win_amd64.whl (82.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

xs3d-1.2.0-cp37-cp37m-win32.whl (75.0 kB view details)

Uploaded CPython 3.7m Windows x86

xs3d-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

xs3d-1.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (124.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

xs3d-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (116.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

xs3d-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (85.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

xs3d-1.2.0-cp36-cp36m-win_amd64.whl (82.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

xs3d-1.2.0-cp36-cp36m-win32.whl (74.9 kB view details)

Uploaded CPython 3.6m Windows x86

xs3d-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

xs3d-1.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (124.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

xs3d-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (116.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

xs3d-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (85.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file xs3d-1.2.0.tar.gz.

File metadata

  • Download URL: xs3d-1.2.0.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0.tar.gz
Algorithm Hash digest
SHA256 bdc719023548455f3112c7d38a155dcd4b82027e5e3f256efb1b2e97edb1fc3b
MD5 53d65596e8b5eb81b77fa55803c63b34
BLAKE2b-256 02e512504b4365e7aeebb1365da5d3003d1fa90b99e2cd24c52610401d6d24a5

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb4650d1420dd0b50f806b1e90bfa218883b7e045248301e8faa8117d6b04ce2
MD5 75f654675d8ce40e9322441559e01417
BLAKE2b-256 360d0ed76f496179c3f9052046f563c5ae37e06ebc64962ebc757e4bdd3942fc

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 74.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db7e06a19487419342508af076e848014d7270c471b75e648962cd02d7af3c2b
MD5 a49eac8760e5f8826cbc8446796b356d
BLAKE2b-256 d39c540252a37f056d36cdcb963f2a5e5d0374ed84a837b1f1166e2949cc20f4

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf277c78dbbd19b32f1b02a69649a6f17add38a2a752f09b4ca7cff45218656d
MD5 2fd01e052181102de1996b17afd12341
BLAKE2b-256 9d9b7d5d9f9a846f06e63cafd047aba765dd825c1f774127fcb231f7ec7881ac

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e41e03a493e9d719277af5d91a30fc74dc050f9c3d6bf93b0e3bb40e01a886e
MD5 25e8bf8c0e364ac30a8799d44e498938
BLAKE2b-256 8436afce45d83ad30b6830d141bb8aee5501f5e744d5ecce468f839ea1777395

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 80.3 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aca276dc459e0dc9e8bac6c43fc165e57dee966b906d0fa20102cb925d4f23a
MD5 801e532f1620d4134e6543b0763e7cc5
BLAKE2b-256 b0931a150f495818f15c1f5c4f2ff2844619e9fa243498aebde0b3f29a8d0f16

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 84.6 kB
  • Tags: CPython 3.12, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9602e0a6cfaa3a4cab7f4a9fe3b28b6aac4c808cf961857e6970120b231b3c14
MD5 61507c2b7519918f54c5d4703e9a4bcd
BLAKE2b-256 f18d4cd0a7efba586808a369f6af57654bef5e9eca64de0c4c13458747c24623

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 82.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40cb81f797aca89f89c0556dbf7443f82835718cd638757dc96f310dc2d25a54
MD5 733e334fe0cae69ac01ff45f5af6beff
BLAKE2b-256 edd676c0244cabe8f37fe0b115dbd3d6756a5682942a9fb7aaa2a733d507dc49

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 984863694425caaf8242664bc64bdd2a55d58b05947f4c09dcc511677134fecd
MD5 c0fcc51e1137fa8307ac04aa2437a6a1
BLAKE2b-256 59bc31b483f024b8890d9b04d1070eb583bb4412089a0a0f0d07cb6cf701406b

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c87a68969aa5e900a3b8159f4eaf408db5cf84a09d516f2e07b3be244ddf04e
MD5 421199125307797e4b9f543364ac0808
BLAKE2b-256 b9ab767b18ba4679eb975abf4040fdf3ffc743d6c6ec1f75882715141ba46786

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72d2ce4260f829200c198f732bd1b9566f24ff7f56feecbdea3e6067cf6b8edc
MD5 8fc9e8d598f5c99893064adc24cce8b5
BLAKE2b-256 5183bd9e72c782bfdea3863271468fe41648216ac8ea1ddae049456bbb2a47ae

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a9bb84a7ff21c5eb4a153c76f579ef70d3a2e56f49015a1afe624665932434e
MD5 7a972112c1002ec8bb4c5ffb1dc75878
BLAKE2b-256 f2af392682d970e1323eb9e9baef2e3fd04fab6d830cfe6fe6fa624e5c3e2ab2

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 82.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f67e0dd4bda04ff1598f358e58334a0ab3717244dfde4ea91bba0b14137fa866
MD5 86229dd4c805bb3afeee095a3ae2f60d
BLAKE2b-256 cd650e12890e3171c3fe5fda1092671473b7d8798a9c89cec0b6633b93e0b0ad

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e7e56b53e075f15a79eb086be1dcf40ba81e013e15b4a4bdd33af7eb06d0f33
MD5 e1cb2709b8359db3dde56bb8248acfbc
BLAKE2b-256 cad5b82d4f9d52d02c702d72caae7b3ba3b6e44ac089db8f5f77255ea7d82874

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 81.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5e82e4f653b5caf2add9750802242ffe83dd66a3eb6259babb7c2aa2264f7b6
MD5 83f13010a70fda2e79ac9c32b3415f55
BLAKE2b-256 be16adbf953f793bf0f177ff1b42de8bdd86e8a276d3c341e9c5b99ccb5e11b0

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd2ae753840313a1e6e465dc984bdbdd4cb25f9561aaf27c245aed815eeb09be
MD5 c717b4afa5359e0259104f0553dbd750
BLAKE2b-256 49e050c89d0a9ae06e3d3c79af9aaeefb978155a4af7b0eee663642b15d6d78b

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 730ee486f59aefc8f389068bcf7922ab3a99f7c0d4568682bb9e5393e2e35080
MD5 0571a837fd60ec11c4086be08706b2a6
BLAKE2b-256 c8840c903e1e18cc0268569060325caa7850ac17062e59ad30a284c760f7900f

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9017fc931b4c3f94d57dabbcf2414ce8238a30e94c68f7b32269acb34254787
MD5 35c3b2d26f4e7ded3e6a94c64907c199
BLAKE2b-256 2f78aadbd38694003a5b8132d8bc55e29624b0aed18039cc9d6fdb96372b3ae6

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1edfdf801e6283db3925069cfbdbaaf421a8ebda4d03b5ed6963d88802d6a219
MD5 99c79247b1a85b67a240c4648b47af87
BLAKE2b-256 850ed55f12d801db9052b662d3b55703f7ff4715d12c70f1688d1c7b6f1b52a0

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 81.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57b3c79dd1c5c299fa893410c590b9db664b7d8cc6691ddaacf99aa9a0d1e782
MD5 abe485d486db4f84be4d4c840436c582
BLAKE2b-256 77e0c9dd0035ac3c9d77c840f06fb1c7d68cae830d03fb6f1f5e0668ca778b62

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 85.8 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f62e74dea686d9db23ec757c56b9f00e81dd64f2df01f6665126bd2132b73e36
MD5 e9b8bc1eac3919fde2d4060a7837e314
BLAKE2b-256 48b9198b6941cb80f50060259f875a2805815253533a30785c7d490b310ead4f

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 81.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 32ecaaf7b148a8d21e7573c647795a515bd4fdebaa763ba85f0316c5b8c18d7b
MD5 742aae0d76738b8060c4fb5e9d9ccf5d
BLAKE2b-256 5320095b85ca4d061a709c79f8f0a4c995508cef193c7992bf730e5e410237f7

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 74.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5c7c94b9eba3e9e99ba1a9765e1c952e7c2ab5188430d6b4c7cce5612744eff4
MD5 4bd145d8993afb7d716fbc55d344aa30
BLAKE2b-256 7d3df586fb9d470086e581e67b26b37bdbd91b4ee66bb81aa0bc6bd2eadad28e

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94a88756ddeffed2704f1f1484679e98a8870d1806a506c4cbf7143700003a60
MD5 c1849253972ae1e7c7587712474934bb
BLAKE2b-256 967df05b0aa6018035abc5129ee773ed247e36430dc8dda7165fca0667c9241f

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 123.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d066ac99f84108c8f200e6e5e85156577b1dc2199f342eb147509dfc4d03cd26
MD5 5f91e54f79632151bf3e286aecf06df7
BLAKE2b-256 d6d492cc39603cd9ffe0e921bdf1a9eb7cfd56b70c2cde6b9c29d22f7ec24667

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f01781180b255b6ae115a67f52c9929846ab83dd6233e755ea854cc171c8686
MD5 257f6b5e0bd41d100c0f066ea3f08365
BLAKE2b-256 78c84881be8c13b21317d530dffcb15f9ca24e50f6d9a5e489a9ac3dedf7bef9

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 81.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2d0aa3ef14329f30cc0f5584d2085c361bea577565d0ccbe44b9be01ad185e7
MD5 fbf6cb5d2523f947addc35d832bcc51d
BLAKE2b-256 41b3bf0d2047df92ebddb5f51062916a887247d68e03c0140f926b6a0edfb4b3

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c38771aa497314f28dbe5b373415aff008e3784ae93244a3be79095bcfe3ee1d
MD5 15713649d287c5283e314a8d2b2a0e5a
BLAKE2b-256 76039c90ca0736115e56cf73bb70ada1da2bba2075fa420b4551d32feffaa5d4

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 81.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c0c355787b682ff4f862ae2b17d006c83e34a30ae76906b2c4c417ee6e5af86
MD5 bc476629938e25e605a5c7012b444a80
BLAKE2b-256 ccd6d1f36a12134811733be4a441665ad45a151b429e441d478c8b7f8b28b4cb

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 74.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dfff724ecaf9da9a2112e03be3b365a413a56d8bd03c141af2320b9bb2782219
MD5 994f8fcda7c14f72ccbd77ca5e64bf3b
BLAKE2b-256 5a577fed7fa7b5d8dde2845bb86a98447ea98c8ce495102f2521ab83acc5e517

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23df47ad8abbc852ed0fb9ed2a2c4bebd8c36bd82e892acaf6e5a47cf466be8e
MD5 c9c85ab5f0d28d3d1df71110ebbdaae2
BLAKE2b-256 a8f3ef7a526a8d0d684d4df7f39f9cd6ceef904639eecee90d7b275cb9e6433c

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 123.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c45be71ede16937e0c22db628f82fe2926c7a5217a47bf97212b8f7947dbc2d5
MD5 799aa7bb862296fdbb06205087150aa7
BLAKE2b-256 f47aa2772900b7f1e893fe74388d432af9cf20943698efc8722df97092631441

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aaff0f5298a9e5a0acc8203719a1282f6f669d1f94c8f0b6a4f4a0d65d75bd4
MD5 a256cc23cb7eb39b57635564ecfdb0a6
BLAKE2b-256 dff7d5b0ebb23e07cc64fd1477daaab9ec2dd27a2f6b8dba808981e07f2a88ab

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc2c14c2607a6b777c4a9b275e7293766c137ef9508d6dc9e0c39e9fa0217af6
MD5 4160292387feaeb9ab72860123cce4f9
BLAKE2b-256 41f51e5d6024a4ac5646029b86971b2a0cab8772bb43c236efd3b699e316f2cc

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 85.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37480c0b2a159c6bb790436ebc428f298b37d75a7ce855665b34b8c701ebaf70
MD5 eb1a588b3eb06cfdf0e6385fa98717a2
BLAKE2b-256 7543658c7d7e2127e3cc52e824ae2d4e44fa00c55dde9d91a7be7c17f5bc9cc6

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 82.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e7b353cb22a09ee977b677ad865f4b169143f419d67cfe14e5fd50e5dca6378b
MD5 425205e48fc17efbacc8c9de03fe3134
BLAKE2b-256 4703db5dd5da37a588f8ff52d605b591d8fa42141d4c09d66919c41a90ad241c

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 75.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6ddff3b13e49fb7c06963bd0b89dff1a0fe25a4f0dcef74bf868c8521a24716c
MD5 3bf26670e584248e5a9bc237c84f3f58
BLAKE2b-256 8fc964297d5c21c6a440619455f51291b8f882320b8426a519b5679ac7b0974d

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff78b1e636f689fddc3b15db8cd842ef752549485f5d8be321c0556d4271ac4b
MD5 371dbedf3aebc293cde80cb58fdad9b1
BLAKE2b-256 4594bdab0e835a51182ae6a53f3f06057b049c2292b9e826c9221614245de747

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 124.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9280ab774c0515252ad836a33905eaffca915c8e680f580895984b968fcdccbc
MD5 dddd36994aa4ddd93abc118ef12de68b
BLAKE2b-256 efba94e1754aa07c72f8c673e9a3b9079dfaf724c7b158f2a0205f58c9c95c78

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fb35988fde29b44025783cbfd9f397e6daa4ae4fa2687b37733631ab4e3451f
MD5 e1991734282fbf987138e27941683ca9
BLAKE2b-256 6be947b9916d0fc38d1d2a2cd4ced18e5b9d8e4789e04ba9d91d4c2245f26311

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 85.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1801cb873e4aa807dd0ac82654da45423ac97e6060c8bfdc1e512e4fa2e0d561
MD5 bad0eb28730ea2d0c4f54e600b6f3cf9
BLAKE2b-256 9801fddd0bca1adeae88647bf062fadbc4d10c1ba045a6cb152a3f8e974f74a2

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 82.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 df02a7f55057bf12844c0cb7c78d8b081615e4719b4af6cd0d9704ec8aba87f5
MD5 8a67edc975c081100260dc7ae62f2dd0
BLAKE2b-256 fb7951580ec1331d8be35cedb81c7adf87d83fc63ce27da943e2057c6d37a25a

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c326a6f45f6d296713961afb8562c36649db424c95e5158dbd50c8fa5660f2a3
MD5 1f7ed372a63c6190cdfefc27c399dce8
BLAKE2b-256 9fd8314dfa894161f4512a8cd12a5441a405d32102977ccf242fd41465e03c83

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e10a5f0764d5af9c020487f82ef03b929c73a35fa459ba7915ed95c33e01aa5d
MD5 06cc8968f703251ffa5d1c19e0770ccc
BLAKE2b-256 ec73f862ec5a4bea31fcd6b2d06ed8cf97bc8719dc38fee27ee08b1208dd8620

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 124.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 844459d74078ea8749296b4ffd433c4415e016df76acfe00b26f4b1fb825379f
MD5 b8f50c755fe224c1135852aea8e88158
BLAKE2b-256 4c3d1b58ef0e7e3769a116bfc06fdd44f092483eb99760d9383fb2c69bd8819c

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xs3d-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c11f73ffd21a2e2f8978fbd8aa6d790655f15350ac9e54766d728800693557f8
MD5 69ca64ef5942f06a42ec75785c3d9bee
BLAKE2b-256 5887067dc4df3672f8f117a3ea8a260189b58aed39328654fa670daaba4479b6

See more details on using hashes here.

File details

Details for the file xs3d-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xs3d-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 85.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for xs3d-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 829ba1f05a2e368486bcaf443c043fb3858624d31b42bacc696bd29608dad4fd
MD5 bda43b1afc27be2d4d7f39c6cc870e21
BLAKE2b-256 7e8e9c02b8e3608fe6408ffb0d070477ab2b0a04ea0ac5c1a35af18484955505

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page