Skip to main content

pyg4ometry

Python code for rapid creation and conversion of radiation transport Monte Carlo (Geant4 and Fluka) geometries.

PyPI GitHub tag (latest by date) GitHub Workflow Status pre-commit Code style: black Codecov GitHub issues GitHub pull requests License DOI Read the Docs

Quick start

pyg4ometry is a very capable package to do many tasks related to Geant4/Fluka/MCNP geometry:

  • Python scripting to create and assemble geometries
  • Loading, editing and writing GDML
  • Load and tessellate CAD geometry and export to GDML
  • Load ROOT geometry and convert to GDML
  • Powerful VTK viewer of geometries
  • Converting from GDML to FLUKA and MCNP
  • Exporting mesh geometries from GDML to VTP, OBJ, VRML etc.
  • Python bindings to CGAL allowing complex mesh manipulation (e.g. hole filling, remeshing)

All with few lines of Python code!

import pyg4ometry as pg4
from g4edgetestdata import G4EdgeTestData

g4data = G4EdgeTestData()
# define a geometry registry
reg = pg4.geant4.Registry()

# build the world volume
world_s = pg4.geant4.solid.Orb("WorldAir", 1.5, reg, lunit="cm")
world_l = pg4.geant4.LogicalVolume(world_s, "G4_AIR", "WorldAir", reg)
reg.setWorld(world_l)

# import an STL file
reader = pg4.stl.Reader(g4data["stl/utah_teapot.stl"], registry=reg)
teapot_s = reader.getSolid()

# place the teapot in the world
teapot_l = pg4.geant4.LogicalVolume(teapot_s, "G4_Cu", "UtahTeapot", reg)
pg4.geant4.PhysicalVolume([0, 0, 0], [0, 0, 0], teapot_l, "UtahTeapot", world_l, reg)

# export to GDML file "geometry.gdml"
writer = pg4.gdml.Writer()
writer.addDetector(reg)
writer.write("./geometry.gdml")

# start an interactive VTK viewer instance
viewer = pg4.visualisation.VtkViewer()
viewer.addLogicalVolume(reg.getWorldVolume())
viewer.view()

Check out our video tutorial for more:

IMAGE ALT TEXT HERE

How to Install

Pre-built pyg4ometry wheels can be installed from PyPI using pip:

pip install pyg4ometry

If you cannot find wheels for your operating system / architecture, please open an issue. Building from source requires some non-Python software dependencies. More documentation can be found in the installation guide in the manual.

Many people and groups are using pyg4ometry

Referencing and Citation

To support the development and maintenance of pyg4ometry, please cite it! Any publications including simulations made using this software must cite the pyg4ometry paper:

S.D. Walker, A. Abramov, L.J. Nevay, W. Shields, S.T. Boogert, “pyg4ometry: A Python library for the creation of Monte Carlo radiation transport physical geometries”, Computer Physics Communications 272 108228 (2022). DOI: 10.1016/j.cpc.2021.108228

and the Zenodo release: DOI

Citation information can be also obtained on GitHub by selecting “Cite this repository” in the sidebar on the right.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyg4ometry-1.4.5.tar.gz (7.0 MB view details)

Uploaded Source

Built Distributions

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

pyg4ometry-1.4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyg4ometry-1.4.5-cp314-cp314-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.14Windows x86-64

pyg4ometry-1.4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyg4ometry-1.4.5-cp314-cp314-macosx_15_0_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

pyg4ometry-1.4.5-cp314-cp314-macosx_14_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

pyg4ometry-1.4.5-cp313-cp313-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pyg4ometry-1.4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyg4ometry-1.4.5-cp313-cp313-macosx_15_0_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pyg4ometry-1.4.5-cp313-cp313-macosx_14_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pyg4ometry-1.4.5-cp312-cp312-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pyg4ometry-1.4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyg4ometry-1.4.5-cp312-cp312-macosx_15_0_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pyg4ometry-1.4.5-cp312-cp312-macosx_14_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pyg4ometry-1.4.5-cp311-cp311-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pyg4ometry-1.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyg4ometry-1.4.5-cp311-cp311-macosx_15_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pyg4ometry-1.4.5-cp311-cp311-macosx_14_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pyg4ometry-1.4.5-cp310-cp310-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pyg4ometry-1.4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyg4ometry-1.4.5-cp310-cp310-macosx_15_0_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pyg4ometry-1.4.5-cp310-cp310-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

pyg4ometry-1.4.5-cp39-cp39-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pyg4ometry-1.4.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyg4ometry-1.4.5-cp39-cp39-macosx_15_0_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

pyg4ometry-1.4.5-cp39-cp39-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

Details for the file pyg4ometry-1.4.5.tar.gz.

File metadata

  • Download URL: pyg4ometry-1.4.5.tar.gz
  • Upload date:
  • Size: 7.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyg4ometry-1.4.5.tar.gz
Algorithm Hash digest
SHA256 bdb68a0af596e8d0316d33ba7a2f13a0637f522e7bf883f4d6c394a227047147
MD5 2e63e018675341a759d33a3ba0b46239
BLAKE2b-256 834ec13c40ebb5faf2a91ff0f11d32a437390550fc5617c89d49ba3cec339dd9

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4ff0b5585d181f861dd8d24bd68823bcfe8a07ed6ea9fc51a304e8bd59c302b7
MD5 cdb1a894c87dc38f52ab3889c8cbffe1
BLAKE2b-256 c8a9539051827605ee9817ef9867fd20af5fd64399595600b8dba9adc2f22f53

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyg4ometry-1.4.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyg4ometry-1.4.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8fd16d2f6c79b7cc799f99ae5872675bb683e5bd0872bf9546b8b75e8b3ace0f
MD5 bad07587f86f7492ea4fd60bd376ed5e
BLAKE2b-256 2c04eee16eb2f629b66c300a4ca6dc7443ad7ecfcff0bb3517a29136ac6a751a

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 751439ca0c7fcee42adb2119d67652a9501f1b7b0468bee30d4b6a1ccd411419
MD5 92122227e73352f44a3bd1a885663e87
BLAKE2b-256 0e0bb8ae4b2a7eb74f06cc8a1d76cb87bd2149194ccbcb339241d6ec76ce49e2

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cefe0821eb563ff782d0081431f13bd6f42702a280596f39cd6745596f78963d
MD5 4cb15816f0a3cd088282e3e688520761
BLAKE2b-256 a6b35bdc43f4d9d4ba62ad342655bc1c34598403b9020e9343ad4c4376199213

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e457aa1edcb70fbfb6bc25611af8978856b0b0acacc261d44a13b7f0e80f2dc2
MD5 ab0f22d164e18c282faa0cd623685e42
BLAKE2b-256 1bb8f7ed0f80e04091901a8b38042822f53a0489e6cd5f8dba2511b6da020119

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyg4ometry-1.4.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyg4ometry-1.4.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 512a1b300d5ba6935afb063fdfda34a065a9f9b23d57851c137389ca67c02031
MD5 e206188c2411f2c3af62ad1e7b89cb39
BLAKE2b-256 7a9a45a1a1df6a74daadcb2058ad013af2edacc9a40503b2022e17143fa8fa9b

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ae314ea964c49c801342396b06cf666078820c7768b8dcd7be101d0080dba82a
MD5 cc98182a34d1691432392a0d6992081e
BLAKE2b-256 fdc61e1ecf00061233ffccecf1439e1ed093f8affdaf3f30ec7dcc297d4a7ef3

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 43ed1ac1b53f1cfdd2c95ea985752c9f8137b366975db0d7c77e307a7f3a1fe4
MD5 ef362c8013d727048c9dcaf47a949443
BLAKE2b-256 e685f98351dfa66ee6bc39c68f91448601bdc51ac9106fe3c7ad35511cd70f32

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3317573e8bb95161d5c53dac40e8df53532d82eb3dcc81dcd0f4f378740026dc
MD5 07f6614a58c41964ecab2b71a3b86220
BLAKE2b-256 012fe20c5c0ceb59a5aad8ebbdbc3a1c63f9458c098f6ffdabd427007bc904e2

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyg4ometry-1.4.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyg4ometry-1.4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5119b71f0f11a8624cba8c1c9c151f11b3b1537b0fb01373dda87f0d84a07a42
MD5 6caa33dd8fe297cdb22de46891cd44dc
BLAKE2b-256 6f1a3834c3ff470bc5b42831d7bdc1d58e2cdea0e03d25acb7c84b1994066077

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 acb5e04fa6452ee993b7d3eb172352589c58eaeee312c090783432b6b1246a12
MD5 a1735b0b01fc5482a28b89c5884c48f3
BLAKE2b-256 6fd7d7aa48fa769923972a9f8428b1de55f96b79a7154ba7fb9aacaa07dfe240

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8808c98f94f81cc3f3e45b0891862ea101546d013614964ad6a5c03aad248b17
MD5 03d5cde568de3027964b3513e6a279f0
BLAKE2b-256 421087f3fc05dc9eaa8b7790d0a8e100c4b2b8a16a8b148cdf1c1109bd516048

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f413fbb14fa942ee127b3e76f2d608078e76f19bc5885f1458325288b6d97255
MD5 3ed9cd01a6261ce57f0bdd4d99c4ed5f
BLAKE2b-256 e4849bf513c7b13d2aff1c1697723aee2716bb708b3f93be63475c1a59421393

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyg4ometry-1.4.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyg4ometry-1.4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 249009f0d8d24e25b210118ef214d03b16fc5841b11d0287badeb58cbdd7922a
MD5 0fbba3ec0002a99681b72a66d7729c7f
BLAKE2b-256 1f7636a21de265b9ec9d11dad62612f5d6249103f3ab95074402baf6218108a7

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 26adf1354900650d35040b6fc4b8a99952795d9baa5156a0cf86eff6945201cd
MD5 76ec5fb55895d052380febf9403ca00d
BLAKE2b-256 e8f4ba2db71e810aa7b3586616c3b694cc90d2ed1f916bc902ee56ccd208250b

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 052a96ebe2c02babbb81dba628eefb8c610642f497134ff58f7090a996012c66
MD5 0ad811ee57dd9b0f75b9b58289854810
BLAKE2b-256 e9c33467c50863421aea31bb4727f383e82f366df838d3d9a9b294a3ba7c5949

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3cec829175f9460e5b2fab1a44da98eecfb4c1a6b153320f7d4fac940f910ec3
MD5 a513ed1369f36b68f540c921945ae7f1
BLAKE2b-256 40677f61ab11f21d27ee61af1b64be5450976b47201ce8735c3058338b8780f2

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyg4ometry-1.4.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyg4ometry-1.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 827fc5c717392c34700eff367610bc3f76cc6888fb00dbb8c5680ebde1addd62
MD5 952579df82171964b266103f396f0e75
BLAKE2b-256 7db8c1bef811eacd116eda3852b83e12589c411aa1c6fe1ce3ba501f1cc7ef5f

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4fbfd7c91436d131ace88a1a3c1f7c38397ae80e2b6984d87b39512c9d553ba4
MD5 75351d5e62ef4ace8d34085e479295b0
BLAKE2b-256 308fd812c50af7ca95f457efb7850fcdc2007c4a2dc1c81d8c2068ea3341439f

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 caddc4b34d711ba52012b70b2c4456a87b3f7daa344bf0f698d15cbf842a4212
MD5 2c3135406b5b0243de19fa60653a8f92
BLAKE2b-256 18410e6e996bce6b2c11af2619bcb5af6aa85fd7cad37bd53edb5b8d9d2bfa81

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 17b6182e2d1c9d70a060f5a47cf0459eafe81113b1a17813c289bbb861576b71
MD5 afaff829f5a2ff0c91d19bafd4c8b136
BLAKE2b-256 e4ec304444f7a74fcd33cfe4f671035942dfb1471e1f8df9294aeeb2308d2e8d

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyg4ometry-1.4.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyg4ometry-1.4.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 31c0c150d3cb019798e71559fad8c7fd56484a9ac6e0dc4a9b51b8efa84271f9
MD5 c4b6d6f3e0dab3c2f14f59b443f40dee
BLAKE2b-256 9ca61576355af51d64df8a1eb0360ebc4e0c9ea9b1695ae652d5e69f3a94fd6f

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 980ac8f103964a44b843e7e14a58840ca1f50dce48a8121dcfc0ac5bd07d6bbc
MD5 f2edabc8f8d2309873931155eaefe9c2
BLAKE2b-256 a348bf503890a4de4b9fbe922e253b21aba0446cd116c239ba2f8179d3c817dc

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e23962e82c209ec3587f865d2829cf5d095b0e25d3bfa791a045b95225bca562
MD5 291d23c740a8e45c2745375493461fc2
BLAKE2b-256 3f2b900b41cec628b92b6f887e01b9f83f9a9751af70b7eb484efec75caf3673

See more details on using hashes here.

File details

Details for the file pyg4ometry-1.4.5-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyg4ometry-1.4.5-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 749d9e2825d0ad7bbf1102a2b900369ed524b993f438eddb7bcc02bd67b5ab98
MD5 c686d738ea82e059bfaadce828a403da
BLAKE2b-256 8466f6d2e2cd58c48da70000299062c6ada7cfebcc210b50c31f171fa16892f2

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.4.5 This release

26 files

1.4.4

24 files

1.4.3

24 files

1.4.2

24 files

1.4.1

24 files

1.3.5

22 files

1.3.4

18 files

1.3.3

18 files

1.3.2

18 files

1.3.1

18 files

1.3.0

18 files

1.2.5

18 files

1.2.4

18 files

1.2.3

12 files

1.2.2

12 files

1.2.1

20 files

1.1.2

15 files

1.1.1

15 files

1.1.0

15 files

1.0.5

9 files

1.0.4

8 files

1.0.3

8 files

1.0.1

6 files

1.0

3 files

0.9.1

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.0

5 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page