Skip to main content

tetgen python wrapper for points, PLCs and tetmesh inputs

Project description

tetgenpy

main PyPI version

tetgenpy is a python wrapper for Hang Si's TetGen - A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator. It helps to prepare various types of inputs - points, piecewise linear complexes (PLCs), and tetmesh - for tetrahedron mesh generation based on simple python types, such as list and numpy.ndarray.

Install

pip install tetgenpy

For current development version,

pip install git+https://github.com/tataratat/tetgenpy.git@main

Quick Start

Following is an example for tetrahedralization of a unit cube defined as PLCs. Alternatively, you could also use tetgenpy.PLC class to prepare TetgenIO.

import tetgenpy
import numpy as np

# tetrahedralize unit cube
# define points
points=[
    [0.0, 0.0, 0.0],
    [1.0, 0.0, 0.0],
    [0.0, 1.0, 0.0],
    [1.0, 1.0, 0.0],
    [0.0, 0.0, 1.0],
    [1.0, 0.0, 1.0],
    [0.0, 1.0, 1.0],
    [1.0, 1.0, 1.0],
]

# define facets - it can be list of polygons.
# here, they are hexa faces
facets = [
    [1, 0, 2, 3],
    [0, 1, 5, 4],
    [2, 0, 4, 6],
    [1, 3, 7, 5],
    [3, 2, 6, 7],
    [4, 5, 7, 6],
]

# prepare TetgenIO - input for tetgen
tetgen_in = tetgenpy.TetgenIO()

# set points, facets, and facet_markers.
# facet_markers can be useful for setting boundary conditions
tetgen_in.setup_plc(
    points=points,
    facets=facets,
    facet_markers=[[i] for i in range(1, len(facets) + 1)],
)

# tetgen's tetraheralize function with switches
tetgen_out = tetgenpy.tetrahedralize("qa.05", tetgen_in)

# unpack output
print(tetgen_out.points())
print(tetgen_out.tetrahedra())
print(tetgen_out.trifaces())
print(tetgen_out.trifacemarkers())

This package also provides access to tetgen's binary executable. Try:

$ tetgen -h

Working with vedo

vedo natively supports tetgenpy.TetgenIO types starting with version >=2023.5.1. It is A python module for scientific analysis and visualization of эd objects that can be used to enhance further workflows. You can find an example (same as above) here or simply try:

pip install vedo
vedo -r tetgen1

Contributing

Write an issue or create a pull request! A simple guideline can be found at CONTRIBUTING.md

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

tetgenpy-0.1.0.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (849.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (871.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (871.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

tetgenpy-0.1.0-cp313-cp313-win_amd64.whl (864.3 kB view details)

Uploaded CPython 3.13Windows x86-64

tetgenpy-0.1.0-cp313-cp313-win32.whl (737.4 kB view details)

Uploaded CPython 3.13Windows x86

tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tetgenpy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (848.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (818.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (872.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tetgenpy-0.1.0-cp312-cp312-win_amd64.whl (864.3 kB view details)

Uploaded CPython 3.12Windows x86-64

tetgenpy-0.1.0-cp312-cp312-win32.whl (737.3 kB view details)

Uploaded CPython 3.12Windows x86

tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tetgenpy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (848.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (818.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (872.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tetgenpy-0.1.0-cp311-cp311-win_amd64.whl (864.3 kB view details)

Uploaded CPython 3.11Windows x86-64

tetgenpy-0.1.0-cp311-cp311-win32.whl (737.0 kB view details)

Uploaded CPython 3.11Windows x86

tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tetgenpy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (850.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (818.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (872.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tetgenpy-0.1.0-cp310-cp310-win_amd64.whl (863.2 kB view details)

Uploaded CPython 3.10Windows x86-64

tetgenpy-0.1.0-cp310-cp310-win32.whl (735.7 kB view details)

Uploaded CPython 3.10Windows x86

tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tetgenpy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (849.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (817.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (870.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

tetgenpy-0.1.0-cp39-cp39-win_amd64.whl (863.3 kB view details)

Uploaded CPython 3.9Windows x86-64

tetgenpy-0.1.0-cp39-cp39-win32.whl (735.9 kB view details)

Uploaded CPython 3.9Windows x86

tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tetgenpy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (849.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (817.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (870.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file tetgenpy-0.1.0.tar.gz.

File metadata

  • Download URL: tetgenpy-0.1.0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0.tar.gz
Algorithm Hash digest
SHA256 215171caa17ccaeaf7a1c93f4541c8abef7c0efbefbe0ab484caf59fc2b3b8c7
MD5 096bbf2c502eeb71b9f48888bb8c8323
BLAKE2b-256 ca42fcbe7cb15b0fe103d93b967f6c16a05baa381c2aa692377b94e0af1d6013

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0.tar.gz:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bbba3c31d4f950be2dc14643f79173664030a44c2682ab76fa4a5d4588743aa
MD5 13499ce728a7aa4aae24c92078493579
BLAKE2b-256 9506309af3ece4cdb70dc5ac032a7d29d83c59bb8f889ff2250f0c9448087859

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f3581263775d0e9de301a73b02cc1c3480aa03a52acc52c8a750de0a94f0794
MD5 d305bdc3b1eb92056c9d4de5b433f569
BLAKE2b-256 4a4e055abee9f8852ff76afe91d1d6175b34f428a884edc8e65f237ed04bd64d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95d65bb10513e348b4032398960f8e61125e16ff88308bb96d37d240f3972a64
MD5 aa9488c307949189f0c2ae5cb94604d2
BLAKE2b-256 165d76776e2917b924b3023e807cacee4d0ad1dd1ed2386fdd9ad979b790d551

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 864.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b435c8b513a648f69c18906871c2fc0855789a423381d6c863a995f39c3f1bbe
MD5 d635444c367c6eaa6cb0ccd35001d73e
BLAKE2b-256 d6809996847ee97ecd6a2d88ffcea6e76cdb47e2e933ccffd579ea128a2fd5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 737.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 87055ce90293c6e27a1fb1284694742ad4edc47a47adfa1109c6c8f81dd142df
MD5 4d13e14c104af044be26f0fff7e9aca7
BLAKE2b-256 810fd6cee25a95644c23ef4978eeb2f37fa2258f6818933f6f2c4443304d6cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-win32.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 920735c0e605d67b9fcb86e460fb8934995c67ebdd79da4fa5f748a4530a7839
MD5 6dc2ae75139a9c69ca94edeb4eb540fd
BLAKE2b-256 d3cf34cb695c4011789b71bbaff4aa39e189a5e467197d074104b474106f88c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba0e9f74bfa6fcb189f94c6157d25bbeff8944dbf0df4d60e2a7b6575f989992
MD5 7040308fa9a2c69452a5366f6f2db106
BLAKE2b-256 7262df52109533ac6232d378c95ee07f6f94fec8b5714522efc8a4ad6825f573

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e0b9faee1f0d2591fd8351819fe02d92aef14cff17e50a1fa66d605c582a0c8
MD5 3023032a07926214a9c0f0d82f501577
BLAKE2b-256 a91fc9e1e1611ce54bea40dd0d315be7abe728515d2f0031905b12b6b53b2b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ef78a94653bef1b835380c5da46a3834c5283a72e28bb7cc2a405ecb664d7e9a
MD5 714081c2e020ebfcd035c47dfe45b9b3
BLAKE2b-256 8172eefb13057207d6964fd7dd445b7e4f127700d1594447e8ae87a8c6b20c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 864.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cca203c1fbb40b37e9ada0f9b91ae14a651acfae3c753afda71662407b23fdf9
MD5 27cb8335c3e0c74a3f213a9f916c34a8
BLAKE2b-256 3f218164e705342c1ea81a4b4de5a5d7c669d4e534a9529543394e249809bf7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 737.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 06197db49eb4062de36c528c5e725fdccf5b6f04a2d37026d48aed38e184ab3b
MD5 11942af6f26e418e34ac47efcd8490bd
BLAKE2b-256 6615d8c2571e41fad2fd38e872c0d0101c1f0d42a424285858f6840c9ac7648a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-win32.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8859804069138c650ace3d9c5484582c0ef577d305ebabb42acda05cb9a9b7bc
MD5 61e17f58dd4c5542728d20072040603c
BLAKE2b-256 8d6862a8315811eb544843599bee225bc70c94f5a1b5a7e0ee6cf28cd32eccb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b332d4ab664a945221a0a3a6b75bd5f718298493c747353417b70580b9387d77
MD5 e8eff50f1146f349855208ddbedbee91
BLAKE2b-256 5f68a4a4e2e31ede51cc425019929f534d6c5c663c234153ebdbcfe194fe4ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24275ba133402917783dd0e7a8609e685dbff5937cc2412186c47f0f507e747b
MD5 d08508939954fe55f61c9ab75ffff9f4
BLAKE2b-256 28d030f89c3703fc41d5c4a56a298c5b667b40a8d55ffce508a732c4edf63b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 251cedd76f621056675c30633d93494f182e3404115b35b5c385c80ee0366c41
MD5 4c371729eaf2a81c6488b0ce063048ea
BLAKE2b-256 5747b4e9666572345e14bd202aff9fc233314ce1417fa6e0204ab55c8f189a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 864.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 42a5f030b2e1ba59572469e375a26fc041f631375c72b7f73b0aa3347487d211
MD5 9a31d6d0c83bb2652767e0e7aca049bd
BLAKE2b-256 e1243ab795c3c9068096a81b9c89d382e8821db4c1aad00823e7105e9980e324

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 737.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0b5a0bfe3b654c6b35a44db9a2e774e248ffd966771d7107293a18cf3810ee90
MD5 0fe18e89be8f0f9b9154a8377b45d411
BLAKE2b-256 3b6179d60a9061f8ff275ebec083ac56d2bb5c1e56ccfd12d0adeca04ec72a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-win32.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b25f50c42223b5783a94d26ef3ef6b2bb60de7d119ffcc7fb388c286281cefa6
MD5 28528f99caa1a75e3a48cf5d9e453716
BLAKE2b-256 3213d5bff9f379b329cc36b43d7de030497c282203803403a045664e65da8655

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91edb7362956ed6122cf172df29c8fd864e98b1fb9df39649c615ae558beaeb1
MD5 35821816017ad79ca84e35ab15931014
BLAKE2b-256 cce4a9c336ca4d62af0bb2b0d35c97b5e8eb632a39eb1a37752173257f6007b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87b22d2488fa104fba20f8c4b2f5552a0921006f8af3f8755792b90120d2575d
MD5 8892bf5ae122911702339ccb86a06386
BLAKE2b-256 69eab0be3f4dcf59110ef32c7fadacb73fc8d174d0b32fd2081daab53e99f31c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba00b3703839d24b8596c5134e6682204a32244809f0deb961056cc27e4ec756
MD5 5612ee2219ca81fc123c18ef114da71c
BLAKE2b-256 7472a37c6da43c05479a6d7f7477d63176a87091b6ba81d2a6d43328210229d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 863.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 616598920c66520aa14e6e50dc3d1ee9a30ba7562e445a9fa414e1218ee50a13
MD5 d0c41d4ef58f060c756198513a6d9f9d
BLAKE2b-256 353936db1dfd3356f1f8906e780e82882dd70692003fbb71df23d38e23a3981a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 735.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 abcb04b2dc1ba7c7aee601ada4ed2bc41f24117a0c5c9ae8d20047a90c357dd9
MD5 ea9de837cba8ae285a8f68c578cd093b
BLAKE2b-256 1f6c58b09daa98da054700743338e8dcba136205f9cedd029c0cf69dffb3c770

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-win32.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23a13e4ccd23a1bbea29ab466ed0d23e5615a2c3cab137bd714f525d84bb2243
MD5 14e6d18e68342e3b843208e4c750c5d6
BLAKE2b-256 6c93c453b33fb0b000457c552da0d62601d3eddc5b9d9097482a5cea6bdff139

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 270a0f7bc28b61ec2ac9c841d07fb7f627fb65929d09b8a78e3dbe9ec4ac26ab
MD5 1f89e837458b23c2e7079eaa93163524
BLAKE2b-256 8dff979e406d4ec28de34c3948258220c6960050cb54fa9252b5a243b162ad2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc837a047bebd62fbaab95c7e46756459595abb30a1afbdf1fda216a43185022
MD5 b18e95d95c54b77f2fc0f38ba8e2e07c
BLAKE2b-256 c4f14a84fd03a43ba8310024dcb1806570ad121b96ba9d3fcc2f36eaf6108517

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64f20975a3d89b103f11304627e6d44f7b818f304c6e7d2483fabd16d4ab4cb4
MD5 9d2636f3b126dd463c3b33ea2abda67f
BLAKE2b-256 7c6fc8f24b1d60943541ee199557e8deefc4603a06137a2ce29287f4951fe830

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 863.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40f2536dfb40dfc7bdf3b5eaa6a3f49c11ebcec2a8b851666a1038a6ae7ac1d9
MD5 580d16081446d8cc593ecd5be5d1619f
BLAKE2b-256 56d563c2f5d0859e02997cfe7f1de0363d28c2cb9c523f4d4363787e76b96529

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: tetgenpy-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 735.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for tetgenpy-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 372298dc9d492e077e1500c531d7de53f6f086a3bc9198e945d22992c9002d0d
MD5 bdfe5f64b91136f3f8d87c5bb7dc7238
BLAKE2b-256 b8ba261516d475c6f7297dd3f0966deea3b722f1cef834e449297b23be89c127

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-win32.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2975a8a036e68e32c1b9d089518307a82a7e88657511092739a6da708a2fa6b
MD5 c4354c382dede723d234fe03cb0b07cf
BLAKE2b-256 66d96fca997a9cd62f85d4d3c283ba45e034f5aa242391ce44d162c1332f6464

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee9a9c3a82c59a7c9f43633886dc5be38bbeda284b7507d2ff683bd828bb4b3a
MD5 40fad876af5167828f7db0fa38b8889a
BLAKE2b-256 a26cf6b80d1055b93aa2a1a59d0a98da17d1233d3192995340199c46cbe4bf36

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e65104a5aa5f76914c1e73d9fae6ce40515a3ebe8a12d0f31d45cca3cdda062
MD5 8ffcdd4034f7662edef77ab7df205680
BLAKE2b-256 d4d14283317d8157909d5037cd661a2cb445c7110f00458b5b11d1d3bc4d9e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44a88a766d3875470c8ddf0ad2aa9752920b176e419774a1e40b112cc007797f
MD5 4638b738e5756ed19f12f6c37f927d11
BLAKE2b-256 60b266af31b91ab3e6bf3c2d483b07e747fa7d5a4bdd334e540a845939d4edd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: main.yml on tataratat/tetgenpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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