Skip to main content

Package to compute full gravity tensor of a given constant density polyhedron for arbitrary points according to the geodetic convention

Project description

polyhedral-gravity-model

DOI GitHub GitHub Actions Workflow Status GitHub Actions Workflow Status

PyPI Static Badge PyPI - Downloads

Conda Conda Conda

Table of Contents

References

This code is a validated implementation in C++17 of the Polyhedral Gravity Model by Tsoulis et al.. Additionally, the model provides a Python binding. It was initially created in a collaborative project between TU Munich and ESA's Advanced Concepts Team.

If this implementation proves useful to you, please consider citing the accompanying paper published in the Journal of Open Source Software.

The implementation is based on the paper Tsoulis, D., 2012. Analytical computation of the full gravity tensor of a homogeneous arbitrarily shaped polyhedral source using line integrals. Geophysics, 77(2), pp.F1-F11. and its corresponding implementation in FORTRAN.

Supplementary details can be found in the more recent paper TSOULIS, Dimitrios; GAVRIILIDOU, Georgia. A computational review of the line integral analytical formulation of the polyhedral gravity signal. Geophysical Prospecting, 2021, 69. Jg., Nr. 8-9, S. 1745-1760. and its corresponding implementation in MATLAB, which is strongly based on the former implementation in FORTRAN.

Documentation & Examples

[!NOTE] The GitHub Pages of this project contain the full extensive documentation of the C++ Library and Python Interface as well as background on the gravity model and advanced settings not detailed here.

Input & Output (C++ and Python)

Input

The evaluation of the polyhedral gravity model requires the following parameters:

Name
Polyhedral Mesh (either as vertices & faces or as polyhedral source files)
Constant Density $\rho$

The mesh and the constants density's unit must match. Have a look the documentation to view the supported mesh files.

Output

The calculation outputs the following parameters for every Computation Point P. The units of the respective output depend on the units of the input parameters (mesh and density)! Hence, if e.g. your mesh is in $km$, the density must match. Further, output units will be different accordingly.

Name Unit (if mesh in $[m]$ and $\rho$ in $[kg/m^3]$) Comment
$V$ $\frac{m^2}{s^2}$ or $\frac{J}{kg}$ The potential or also called specific energy
$V_x$, $V_y$, $V_z$ $\frac{m}{s^2}$ The gravitational accerleration in the three cartesian directions
$V_{xx}$, $V_{yy}$, $V_{zz}$, $V_{xy}$, $V_{xz}$, $V_{yz}$ $\frac{1}{s^2}$ The spatial rate of change of the gravitational accleration

[!NOTE] This gravity model's output obeys to the geodesy and geophysics sign conventions. Hence, the potential $V$ for a polyhedron with a mass $m > 0$ is defined as positive. Accordingly, the accelerations are defined as $\textbf{g} = + \nabla V$.

Minimal Python Example

The following example shows how to use the python interface to compute the gravity around a cube:

import numpy as np
from polyhedral_gravity import Polyhedron, GravityEvaluable, evaluate, PolyhedronIntegrity, NormalOrientation

# We define the cube as a polyhedron with 8 vertices and 12 triangular faces
# The polyhedron's normals point outwards (see below for checking this)
# The density is set to 1.0
cube_vertices = np.array(
  [[-1, -1, -1], [1, -1, -1], [1, 1, -1], [-1, 1, -1],
   [-1, -1, 1], [1, -1, 1], [1, 1, 1], [-1, 1, 1]]
)
cube_faces = np.array(
  [[1, 3, 2], [0, 3, 1], [0, 1, 5], [0, 5, 4], [0, 7, 3], [0, 4, 7],
   [1, 2, 6], [1, 6, 5], [2, 3, 6], [3, 7, 6], [4, 5, 6], [4, 6, 7]]
)
cube_density = 1.0
computation_point = np.array([0, 0, 0])

We first define a constant density Polyhedron from vertices and faces

cube_polyhedron = Polyhedron(
  polyhedral_source=(cube_vertices, cube_faces),
  density=cube_density,
)

In case you want to hand over the polyhedron via a supported file format, just replace the polyhedral_source argument with a list of strings, where each string is the path to a supported file format, e.g. polyhedral_source=["eros.node","eros.face"] or polyhedral_source=["eros.mesh"].

Continuing, the simplest way to compute the gravity is to use the evaluate function:

potential, acceleration, tensor = evaluate(
  polyhedron=cube_polyhedron,
  computation_points=computation_point,
  parallel=True,
)

The more advanced way is to use the GravityEvaluable class. It caches the internal data structure and properties which can be reused for multiple evaluations. This is especially useful if you want to compute the gravity for multiple computation points, but don't know the "future points" in advance.

evaluable = GravityEvaluable(polyhedron=cube_polyhedron) # stores intermediate computation steps
potential, acceleration, tensor = evaluable(
  computation_points=computation_point,
  parallel=True,
)
# Any future evaluable call after this one will be faster

Note that the computation_point could also be (N, 3)-shaped array to compute multiple points at once. In this case, the return value of evaluate(..) or an GravityEvaluable will be a list of triplets comprising potential, acceleration, and tensor.

The gravity model requires that all the polyhedron's plane unit normals consistently point outwards or inwards the polyhedron. You can specify this via the normal_orientation. This property is - by default - checked when constructing the Polyhedron! So, don't worry, it is impossible if not explicitly disabled to create an invalid Polyhedron. You can disable/ enable this setting via the optional integrity_check flag and can even automatically repair the ordering via HEAL. If you are confident that your mesh is defined correctly (e.g. checked once with the integrity check) you can disable this check (via DISABLE) to avoid the additional runtime overhead of the check.

cube_polyhedron = Polyhedron(
  polyhedral_source=(cube_vertices, cube_faces),
  density=cube_density,
  normal_orientation=NormalOrientation.INWARDS, # OUTWARDS (default) or INWARDS
  integrity_check=PolyhedronIntegrity.VERIFY,   # VERIFY (default), DISABLE or HEAL
)

[!TIP] More examples and plots are depicted in the jupyter notebook.

Minimal C++ Example

The following example shows how to use the C++ library to compute the gravity. It works analogously to the Python example above.

// Defining the input like above in the Python example
std::vector<std::array<double, 3>> vertices = ...
std::vector<std::array<size_t, 3>> faces = ...
double density = 1.0;
// The constant density polyhedron is defined by its vertices & faces
// It also supports the hand-over of NormalOrientation and PolyhedronIntegrity as optional arguments
// as above described for the Python Interface
Polyhedron polyhedron{vertices, faces, density};
std::vector<std::array<double, 3>> points = ...
std::array<double, 3> point = points[0];
bool parallel = true;

The C++ library provides also two ways to compute the gravity. Via the free function evaluate...

const auto[pot, acc, tensor] = GravityModel::evaluate(polyhedron, point, parallel);

... or via the GravityEvaluable class.

// Instantiation of the GravityEvaluable object
GravityEvaluable evaluable{polyhedron};

// From now, we can evaluate the gravity model for any point with
const auto[potential, acceleration, tensor] = evaluable(point, parallel);
// or for multiple points with
const auto results = evaluable(points, parallel);

Similarly to Python, the C++ implementation also provides mesh checking capabilities.

[!TIP] For reference, have a look at the main method of the C++ executable.

Installation

With conda

The python interface can be easily installed with conda:

conda install -c conda-forge polyhedral-gravity-model

With pip

As a second option, you can also install the python interface with pip from PyPi.

pip install polyhedral-gravity

Binaries for the most common platforms are available on PyPI including Windows, Linux and macOS. For macOS and Linux, binaries for x86_64 and aarch64 are provided. In case pip uses the source distribution, please make sure that you have a C++17 capable compiler and CMake installed.

From source

The project uses the following dependencies, all of them are automatically set-up via CMake:

  • GoogleTest (1.13.0 or compatible), only required for testing
  • spdlog (1.13.0 or compatible), required for logging
  • tetgen (1.6 or compatible), required for I/O
  • yaml-cpp (0.8.0 or compatible), required for I/O
  • thrust (2.1.0 or compatible), required for parallelization and utility
  • xsimd (11.1.0 or compatible), required for vectorization of the atan(..)
  • pybind11 (2.12.0 or compatible), required for the Python interface, but not the C++ standalone

The module will be build using a C++17 capable compiler, CMake. Just execute the following command in the repository root folder:

pip install .

To modify the build options (like parallelization) have a look at the next paragraph. The options are modified by setting the environment variables before executing the pip install . command, e.g.:

export POLYHEDRAL_GRAVITY_PARALLELIZATION="TBB"
pip install .

(Optional: For a faster build you can install all dependencies available for your system in your local python environment. That way, they won't be fetched from GitHub.)

C++ Library & Executable

Building the C++ Library & Executable

The program is build by using CMake. So first make sure that you installed CMake and then follow these steps:

mkdir build
cd build
cmake .. <options>
cmake --build .

The following options are available:

Name (Default) Options
POLYHEDRAL_GRAVITY_PARALLELIZATION (CPP) CPP = Serial Execution / OMP or TBB = Parallel Execution with OpenMP or Intel's TBB
LOGGING_LEVEL (INFO) TRACE, DEBUG, INFO, WARN, ERROR, CRITICAL, OFF
USE_LOCAL_TBB (OFF) Use a local installation of TBB instead of setting it up via CMake
BUILD_POLYHEDRAL_GRAVITY_DOCS (OFF) Build this documentation
BUILD_POLYHEDRAL_GRAVITY_TESTS (ON) Build the Tests
BUILD_POLYHEDRAL_PYTHON_INTERFACE (ON) Build the Python interface

During testing POLYHEDRAL_GRAVITY_PARALLELIZATION=TBB has been the most performant. It is further not recommend to change the LOGGING_LEVEL to something else than INFO=2.

The recommended CMake settings using the TBB backend would look like this:

cmake .. -POLYHEDRAL_GRAVITY_PARALLELIZATION="TBB"

Running the C++ Executable

After the build, the gravity model can be run by executing:

./polyhedralGravity <YAML-Configuration-File>

where the YAML-Configuration-File contains the required parameters. Examples for Configuration Files and Polyhedral Source Files can be found in this repository in the folder /example-config/.

Input Configuration File

The configuration should look similar to the given example below. It is required to specify the source-files of the polyhedron's mesh (more info about the supported file in the documentation), the density of the polyhedron, and the wished computation points where the gravity tensor shall be computed. Further one must specify the name of the .csv output file.

---
gravityModel:
  input:
    polyhedron: #polyhedron source-file(s)
      - "../example-config/data/tsoulis.node"   # .node contains the vertices
      - "../example-config/data/tsoulis.face"   # .face contains the triangular faces
    density: 2670.0                             # constant density, units must match with the mesh (see section below)
    points: # Location of the computation point(s) P
      - [ 0, 0, 0 ]                             # Here it is situated at the origin
    check_mesh: true                            # Fully optional, enables mesh autodetect+repair of 
                                                # the polyhedron's vertex ordering (not given: true)
  output:
    filename: "gravity_result.csv"              # The name of the output file 

Output

The executable produces a CSV file containing $V$, $V_x$, $V_y$, $V_z$, $V_{xx}$, $V_{yy}$, $V_{zz}$, $V_{xy}$, $V_{xz}$, $V_{yz}$ for every computation point P.

Testing

The project uses GoogleTest for testing. In oder to execute those tests just execute the following command in the build directory:

ctest

For the Python test suite, please execute the following command in the repository root folder:

pytest

Contributing

We are happy to accept contributions to the project in the form of suggestions, bug reports and pull requests. Please have a look at the contributing guidelines for more information.

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

polyhedral_gravity-3.2.1.tar.gz (70.5 kB view details)

Uploaded Source

Built Distributions

polyhedral_gravity-3.2.1-pp310-pypy310_pp73-win_amd64.whl (506.4 kB view details)

Uploaded PyPy Windows x86-64

polyhedral_gravity-3.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (590.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (688.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

polyhedral_gravity-3.2.1-pp39-pypy39_pp73-win_amd64.whl (506.4 kB view details)

Uploaded PyPy Windows x86-64

polyhedral_gravity-3.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (764.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (590.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (688.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

polyhedral_gravity-3.2.1-pp38-pypy38_pp73-win_amd64.whl (506.1 kB view details)

Uploaded PyPy Windows x86-64

polyhedral_gravity-3.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (764.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (590.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-pp38-pypy38_pp73-macosx_10_13_x86_64.whl (688.1 kB view details)

Uploaded PyPy macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-pp37-pypy37_pp73-win_amd64.whl (506.2 kB view details)

Uploaded PyPy Windows x86-64

polyhedral_gravity-3.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (763.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-pp37-pypy37_pp73-macosx_10_13_x86_64.whl (687.6 kB view details)

Uploaded PyPy macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (764.4 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (710.5 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp313-cp313t-macosx_11_0_arm64.whl (597.6 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-cp313-cp313t-macosx_10_13_x86_64.whl (673.9 kB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp313-cp313-win_amd64.whl (508.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

polyhedral_gravity-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (708.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp313-cp313-macosx_11_0_arm64.whl (591.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-cp313-cp313-macosx_10_13_x86_64.whl (669.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp312-cp312-win_amd64.whl (508.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

polyhedral_gravity-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (708.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp312-cp312-macosx_11_0_arm64.whl (591.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-cp312-cp312-macosx_10_13_x86_64.whl (669.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp311-cp311-win_amd64.whl (507.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

polyhedral_gravity-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (764.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (710.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp311-cp311-macosx_11_0_arm64.whl (591.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-cp311-cp311-macosx_10_13_x86_64.whl (668.4 kB view details)

Uploaded CPython 3.11 macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp310-cp310-win_amd64.whl (506.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

polyhedral_gravity-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (709.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp310-cp310-macosx_11_0_arm64.whl (590.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-cp310-cp310-macosx_10_13_x86_64.whl (666.8 kB view details)

Uploaded CPython 3.10 macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp39-cp39-win_amd64.whl (504.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

polyhedral_gravity-3.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (763.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (709.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp39-cp39-macosx_11_0_arm64.whl (590.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-cp39-cp39-macosx_10_13_x86_64.whl (666.8 kB view details)

Uploaded CPython 3.9 macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp38-cp38-win_amd64.whl (506.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

polyhedral_gravity-3.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (763.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

polyhedral_gravity-3.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (709.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp38-cp38-macosx_11_0_arm64.whl (590.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

polyhedral_gravity-3.2.1-cp38-cp38-macosx_10_13_x86_64.whl (687.6 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp37-cp37m-win_amd64.whl (506.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

polyhedral_gravity-3.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762.3 kB view details)

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

polyhedral_gravity-3.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (712.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp37-cp37m-macosx_10_13_x86_64.whl (686.5 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

polyhedral_gravity-3.2.1-cp36-cp36m-win_amd64.whl (506.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

polyhedral_gravity-3.2.1-cp36-cp36m-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

polyhedral_gravity-3.2.1-cp36-cp36m-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

polyhedral_gravity-3.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762.3 kB view details)

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

polyhedral_gravity-3.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (712.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

polyhedral_gravity-3.2.1-cp36-cp36m-macosx_10_13_x86_64.whl (686.3 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

File details

Details for the file polyhedral_gravity-3.2.1.tar.gz.

File metadata

  • Download URL: polyhedral_gravity-3.2.1.tar.gz
  • Upload date:
  • Size: 70.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for polyhedral_gravity-3.2.1.tar.gz
Algorithm Hash digest
SHA256 6e960060853d3c9f04edeac7be33d0b331c408035eef7e58c592f290912665c7
MD5 ec3951eb5d6dd768042014b881145111
BLAKE2b-256 5a5841a188b3148222b1da9eeb81bacd6658ba3e276a66ad51ae31b252d30834

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e8fc641b542e5669e04869b6e547570db9c5bd72ee4132f0db11b327883d77b9
MD5 0186d02a76c70ec792d026396c728cc6
BLAKE2b-256 946036e57b3e96bf9b6b98610b7d9e6605dc85fbb8ed32fd43e34dbab17fc93c

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca4c361d97bc83e59f7e3685ce3ef079ff9dff638e3235aeca051dd03b22c789
MD5 660d495f5bea9e06d62a575d850f931f
BLAKE2b-256 e15cd04700f735756b965141b7d198ea15d265ef57521374d3c1d4a56e0a30b6

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c2a7328f0c94de764b59137db13136ddce38161f89d44348d1c7f3f7f29895c
MD5 7939b83ab63d99e9515fc9b0324e6b58
BLAKE2b-256 e232450163f8df8e68609835584945502076a9225c59ae819a37450ee1aae82e

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a86224c86165d552bfd630a7be784be9ebc55a729300c84c3cb2b79372a59803
MD5 50ebcf6d0d8f52c96d982b275bbbaeee
BLAKE2b-256 191365cbd07d86bfe0e7b9f633c7521b2efa3495ca695b8eccef9a643ace1752

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 66adbdf3c2869efb45098f9e916c48115e825ae10e6ad2d977f1307b745af630
MD5 604a7fa8fad08962ab5b6b6574b483b9
BLAKE2b-256 4d5dc7567b89fb29b90e4ea42b225853d64da3f67bc7a91ffda1234740d6afa6

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 28549b2ae98e516f4f5b9446613b0bc9e09dcd46ab1ba4b9821bde484697c67d
MD5 a46d32f90795087aafc0851ce6eb7f73
BLAKE2b-256 ec0b9609b8f4fef870a9380b54b73434bed6591ab6f8119b0a6bb5d2610bdce9

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e42dd60296b70d019fc162b0436566663eaf9fc987eab1ec7dfef0daa0af163e
MD5 a406ef82460584ad58e0e3b582361322
BLAKE2b-256 8e991f002f63c8e4c62ad997879042c298b0710357122e79dd70ef39dae9bebb

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61ab0d96f5c00b817d239ff177e96bbd730284953a84db18f3dee8f0429f0353
MD5 3e93a9855187db57ff110f57e5acdcba
BLAKE2b-256 ef6094184886a30219b9a4897c51740cce16c48873de764531304b7051ac3936

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2360dc9a2b5e902eb73a80d6e5189479bec3800d1d9f927c89c5b924c681e0bb
MD5 f81641e44c8457e6888399bab56966cd
BLAKE2b-256 774ea4f5700b362f8a849108eb3ec55d79201a2d3503e66d36d8ce0c5433d34e

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 537d0113a4add44bb221ef8215d4c44e7f7bc8459e7104285b9dcbe8d1cb4bfe
MD5 c9538ce010677f79b248b84e80e6565d
BLAKE2b-256 f675c6f8dce7e15a96c97d6bbdc46afd81d1504417b9bccf20a21c86f9c3248e

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c0b6f4b22604ddf321d713b264352754ecb2ac88544193f93de3f49322203456
MD5 0e2541acbd7dc9bb8378f8022a027028
BLAKE2b-256 d2651da226f289cc01414599795a7dc163d1b0be053632d1d40504ac1974e2d0

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea77f278f96b778ce692b462ff91ad164179ebb738e53336e8764e32ce45dfdc
MD5 b970044f28624865beb73ea06af06d10
BLAKE2b-256 ad837ff58909b50a059bc6080fb4c291f57c5e648f00cb3f46c59379bfc158d6

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 beb1aa9d9b20bd5233107c114f70aca87054e5985bd520bcf864b5ed06e6aee4
MD5 984f3c5c66c676b3c1ad962905a22ed7
BLAKE2b-256 b4c358369be70701cc746c5afbdf4ef4e1be5bbcee45229ed6229dceab60a114

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9899dafb257cbd2c2496cd989948fb578cef3fe2fcfc375b2b6a0dc0b7e79142
MD5 1a676ca6becab94d9c4763fd0e9fec94
BLAKE2b-256 2b250014924485d0586d58a5d05fe700a59c8ce7e8346e283e6458b2c28a2899

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp38-pypy38_pp73-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp38-pypy38_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b2170254a05db19acd0dde7da4cb9cf583dec9320832fe21e0ff3b8c49826827
MD5 4da7f5e0027bf158f7074321058eb523
BLAKE2b-256 4a2c207b7596813762686c4293bffcfdc805de70c7bcffc7d9425fc2a3a24a53

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0cca7f8f6885457d2b592493cca06fab993fac4f972d66c0b7cad893f692a606
MD5 b7579af3b11017df95cec21e730ad3d6
BLAKE2b-256 19dab61da0f2f2fe7871f977bcd3b2c9806761c77ffeb3aded5b2c1c776b380d

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52d83406a10157ee4990e4999a0164e8f9102364e26ae9ab864342a5f45313a0
MD5 f0c2a22da4ad3663dfb18c2dabd758ca
BLAKE2b-256 aa467737eb2db9f1acfc7964c6420387678f075284d4baab705cf7cb37b3330c

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e59552a868c4e92c7f5842f21cc2ed979feef118963a1fe342d7701ca9e97c6c
MD5 c97342b1513736cd1e8f518c481e4631
BLAKE2b-256 29a2fae2659750737e00304188c22235cc252768d4456e3f4d80309ace125274

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-pp37-pypy37_pp73-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-pp37-pypy37_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8f44feee48d4b417e77f2b2bb5147453eeb695d284c91d7fa2df93654030932b
MD5 6b70cc6e7cbedf8aa20f178473e6fac1
BLAKE2b-256 d998f1a35a542b2579f0f935671c2709c9d7232ade09a186c504bbd2bef4e71d

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55f1e3fa0ccf778501efa55ebf43d5dd0197bcaac00e7f69508f5ebd0b9c0556
MD5 19eb112fdc7250973d4b2f0fb2a987ff
BLAKE2b-256 7eff887ea984e1bc86a61f75313ef3b4693571ebe8cbfe9e87be6181b30d4e75

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17b6faf3a2d0e8d857adc065fb2193f105495fd10dae444170a15ba11ad5eaad
MD5 abfb67a11ddfe0f9458f6cbeb4b01ea8
BLAKE2b-256 d662bafff83de7b437a63ff37c4bb2cf2e9c00bf2af57ca7d77520a3e740d5f4

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69ffec34518d6afd431f31d9e07f31f172236e79aa5aeba4d2104525d3416c83
MD5 7b34221bee64d5ca18a66cb182e07a43
BLAKE2b-256 ba045589fe309b725e1742f5b46ce597236a3c793e6c096b0bd290d300dcadf1

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 153f23715db111eaead3ec985c4d6ffaf331f1af53fad98bf0443bf556e020b3
MD5 00843a9cc9330e30c13a5c2747d0ba80
BLAKE2b-256 60b08f3e118be748d24bf1a0abab34e44af01b7ab0b1dcafa985f3fa74a1c9da

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56b26d84830c949a45cd219284e9847157789b54473b72174f51ccd3bfba7409
MD5 37623e8c4bc284a0fa9fbc852f4f1cbc
BLAKE2b-256 139b38c6f18c0979e2d372620f8f8b2ed2a1ffd33dcf70908843940874dcc38c

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6b599d2278707112636ac16cfc138c0d01d3efd411a9a03f6f6d453f1c594037
MD5 519edfb81807d46d11004dccaa1f9181
BLAKE2b-256 81b85a9d291fa69c80b83194f83375349281b22b4e0a71868f5d3130b04b0269

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e9b38bf160c5b541899f08a4ca8ea17d72968ad8453034c2d8c5b37b09c070d
MD5 081c8a123d5689dee7102b62fa4468f4
BLAKE2b-256 3b536b110eb7bc10c19e2fabd7c397fc56e08c0dc34c59990f113ee9480f4d6d

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bba425d68aa344fb362f9d8904026feafe12f1114fec2b294a8ad2c338104f4
MD5 1c9b4f60894b0fd9533b97e663b65660
BLAKE2b-256 fef6ce84a2b32e676f0c4a4e4768387c4d9b56b8a3abc437d2d6bc447e31e47c

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77e737a0d2949251adf1b30412d1f5b76255034141eb6a4bf26e8f4346785138
MD5 d4fc147eb708ad0119264678ed0f6fca
BLAKE2b-256 84d9330e9e3dc459410c64dd20310319adb1360d49cb3cf036accbfeb7bce929

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df3a90a3178d6941a2d44f8ac1df3e97a785c6e68732a04c092932f5051ae17e
MD5 3ddf5ed3c266d475fd678fd53243c133
BLAKE2b-256 a0ad1b19cdb02ce9610190a0033c1bf37560260b668ddb5e9ecca588bd6304c9

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb8282a8abd6b2776c4cb19c8cedf73dcb47fd9762b2be0484833a2a8dfe4733
MD5 2ac8c3c0331e0fed0070bdf11d645ad4
BLAKE2b-256 b10d1da8b410480ad80ae3d57b3bccf6ff68019a990c679048d9db373fcb6a59

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68a107232f6289285cec34d7667bdd46fd234c6ff09549ea33e8634741bc87ff
MD5 dfae2c96b4138b6b49119f21a0bf9c36
BLAKE2b-256 40c4a60745cb229f84a5b8df34a7ccc1bf7409c096f17ecd38bdf9d681abbaf6

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fce07abd7a606229f1705e13d954eeb9e2204ab39742e4b9560485a772a63642
MD5 bae051fccfa0ed58a0af97bdae93b19e
BLAKE2b-256 c221b6fbb9247860d21266022e8346dbd8fd3298cae075c47f84b1cb3a1edcb9

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98c507ffd67803ca34948014e68edb86492b7c8cfbeefc170a1bd2a1414cedda
MD5 09c1844cfe71838b16b80a398cd8f07d
BLAKE2b-256 475ff1e9bb93f280c6a3b626159ca0e1d9b3aa6c0009503911c366fd6f59e72c

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d67ecc7d6ffcfe3e37c7ade0b40527a5bf00f5bc83aff9c53949855a8f2afed
MD5 1d7c6b8c578ecb9eb3f34285f60c5fda
BLAKE2b-256 f217c5216e082d69403439f1d12c94d001cebd654d2411577f1ef4d538707da9

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef35f5be762b1a332dc32bfc7bee022ac4f37d6ed63a4a3ff4aadcc309baddf6
MD5 1ba870536c69c416dc078895de057a3f
BLAKE2b-256 de3ce4d01902f21a4579af97026aef51f17814608548177f80173d7d843d32c4

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 222d6cdd6b85d00b71f8b2f09d3779b776275c284a6c3ca5b9f9ccc55c8bfebc
MD5 20b0dc84cefd7259fdb9066a014328aa
BLAKE2b-256 de92afba25b82d21297a4b2a01a4afa74cfa7f2b1dedc441ad9f8139cdc906a5

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 590bd137b537166ef126b7aba346c882c052031a5788fa4970f0a3cf34457c94
MD5 2589cee2d93272ec030bfb56f1085788
BLAKE2b-256 b901d8f5a3bd7cc15086cdf40ce38f2310179a55dda24b601d66c9b074e04062

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0f1a0b8ca7c084f0bb72a13eea6fde751eefdd2b9724c4d44215907039966a8
MD5 2220bdee19da5c1ffe0cf2bb7508b397
BLAKE2b-256 be4b87beea4fba8c4db452d1cc81d9d7b213a57a905087e4951d523e8f0675a1

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a5af7c48833d4b8b020ac5175489a9bc98a7226a2e745cdea8b1b12916140ca9
MD5 2e6fccc0c4da89c8907b6c1837a1587d
BLAKE2b-256 3d3fd1ee584d7f9d3514cede79b50e38298d0df9f743dc2f983a305424255870

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cca3f90c29e7ce8860a31925744251fc38cb2f88fc92de8a2f76e0df43492971
MD5 affee49f9ff439decfb0140c6fe552ba
BLAKE2b-256 29000ff81b3773a8bec45da2dfc2de3d96935053cd7e63441e0a55ebfe52a7b6

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa7f288afdfd80ac81720d9a884afab965a5b1b3a3d049076c725ab615ff794b
MD5 366df0f378a7f1f877db8c6448d49d5e
BLAKE2b-256 d1dcf18034a89c069f866d53edde68b09f8fc770066ec05d32b3f1fed5a243a5

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41092f04c3d24da0d2b825ea61c9eb29f133255a1a3ca8c87b145e333bc5db49
MD5 d24f15fc4141097cf0ed46fe5a5b9830
BLAKE2b-256 37125efa2ff4c9b1dd73add61ebaae379174e56ebe190e6df73dda5b558c7c59

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae3f8c720407c95967ae84fc2b21337c1db982a556da199441db9e476f28c708
MD5 dacfa0d144f7c6336e2da19cac8e0469
BLAKE2b-256 049f762b6ff5b8810c59e5174aa53d546007fbf3a5a77b5587ca3d3cfb0a594c

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ab13a6c92b8fcd854c1ab5a6391dce73b67462e892e2f835636da3b1ac08be7
MD5 34d88bc3e9b436811f3dfda642dbf3df
BLAKE2b-256 b45bcd16adf7f7f9c54af47cfea274e6076943577591ff21cf96f950024a7807

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07da8a5ddd798b290644a6341fda1c4904660367ba0f52dce01dd5902eaedb94
MD5 dcdc984c504dc465c29271e200b4bc37
BLAKE2b-256 f6f357b88fa3cdaa5b962fd0c9c0e6937653df333c0f14bf7b6c927e34205dba

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a10a0a90578e6de0b39a2fb1db43a8a42700bafcb1431c2734a4133d600b4c44
MD5 fc1c5151b1c84d93a6de3aaded6a7cb7
BLAKE2b-256 0ed6e28258de2ebe77d21bc9106c60b97b7250ccdd85591fa2ee40842ab37049

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e89e316780a4fa9df42e8084e018b0e57dbd28695c0dec11352867cbba69ad54
MD5 9a1b044981acd62398c795c6068c523c
BLAKE2b-256 865a12a2baf8f6d5db0ab675ca8680679bb7b4f63e4e8aa1bf45b8064332a545

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be83a9c2155389ee49b8f59feea6c51c893ec5c5f47f7984ce02d9c1586a13d4
MD5 336adc290bc18232e4b313c70137fac0
BLAKE2b-256 fa08d06fc5187ffebbe4fb1727c5ccf04d52e45279721c9ac63adf3c799d3856

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed33799494271ba53f0397004c8937ec2556ca01144cdd92e0360e218eecf71e
MD5 162e2de04313c89f3b1181ab6f29cd24
BLAKE2b-256 4ee9f5d050960ab1656fa60989ccc83581f17d0b89982020157d6588f0f726c6

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df720682992c56b2c6dea34f14178cfb7760a03a6cb3167e2f46c1a755fd3e51
MD5 08c730784cf87df1722d76fe4a8451e5
BLAKE2b-256 a73c45c0ec0ad89a13cf71b97e46fc004b684b5f5e61bf8ede8d43f1fb55a924

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70af19f45ee890479b25bb8b8ce1a2dede92b89db9cb2c3a3cf4b4924d5e8051
MD5 f507c1547a86465af48faf913b23a4bf
BLAKE2b-256 f6869939a326e890492a58c7ab970557d21cecdbcfedfa04581f932a20ed4ace

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3d77454316ab8141535b7dcc420369095c5d8282d724ddc92de9ee1eb473bbc
MD5 7ca9ef7fdabf7cd65108e8bcaa4f5742
BLAKE2b-256 98da8623104d31b3a2459c907bd9f49957bd2160216c8cef64cf1fae4240d72e

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6351b5da43d9ffeba42b6df1f6b87a63d0f7d22344579a80dc62c9f9f456f7ed
MD5 d3ddd774290d4340cc545c5576b3d2bc
BLAKE2b-256 7e2d6401e5503957ea27355e6828a2c243b99d419ab5e41fa630c6d25e006d32

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8d5a9b75a1f3c31a8e3f3602358590ad77f7a26b17bc9af135b3a1b224446c85
MD5 adbe5f55b3a5fe2703ecffc7c4621715
BLAKE2b-256 4c2855947e6d619ebbbfd952ee607f993885cf25b2125316d8ff5453c1175475

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5594a816a42bbba9798aed26ac8eb169bbcde8c46b83da85cd053ad5a99073c3
MD5 d6d79a650a0aaef3aec33610dd1ff716
BLAKE2b-256 107162756014029b6abe4da27b0ab68a0d26c84f0eb908d5095fe1902189ac48

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1b70ee37d54034a09957115214bf1da2bbdc12e3f7bbb3444bf6f03841c216e
MD5 a7970a8a4d0eb2bcdba5a72863445a1b
BLAKE2b-256 8727234e9e106dd24608062ae011b6e505c01d7b8e914ff7d624b2a6b65fdb1d

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5d2a281c353198507316f26a5d40b71b6adaa46bc242f163c6adb8c366b4bbf
MD5 6b1b59bf48032e8d3a403d38b6c54ece
BLAKE2b-256 61bee1965a414dde35bb55c35c80fbb36711cade53a1a014ad31b219f508e937

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f78f2f1c69aabf666fbc3a518233df00ee4a57819bbe28ff12276fbb70413bd4
MD5 0cac1d60665d43356cf4bd2bdce8d637
BLAKE2b-256 a16578fb6590bed7d7690741d187bb7247755b51faef266f63d603ed99e2e322

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d29518b7fef941e8a2c58ef9b682e7e43285e3109186782b0fe823aebbc16288
MD5 ef82ff3417cc6779293842d4c56c89cd
BLAKE2b-256 e468df84a0760ac81f0713dec9faa06ea7ada09c2ad57fb32b6cc3b2eda0db29

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 efa504e36e9403375e97325f9df25510fb1424e8102e99dae3cc493bb7dd72d0
MD5 78f3c6d581257933e3afcaf93ee6114b
BLAKE2b-256 c5c37e3af9a778b8a88f183379edd9371fb12bc97573a93c37594386ba8aac83

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e4dc809998975a5f4cd25236529cfabfdfec3f698f2998af38313d3bceb9051b
MD5 a2981abbcf563077f0b81ee59d394d81
BLAKE2b-256 f8431ae51c551f991533f3d4a8f0b639fb0a6db349fcf9c6d58eddc9e9c6313a

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa3fdbe2671b2b1265ab12857a9cdea852f7792439afc95f822b6ec1f797f87a
MD5 0158e70a4826e462bde3da9e0f71ff8f
BLAKE2b-256 02e266240739c109f770accb07f06f04677041c3f234ad238898b86aa5fcc432

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6394e004ce74ad83fe9f80408e787b7e7fc79dee04773ab79af3442b2ad86fe7
MD5 fe704d0b05fba90d85e09c835e941e86
BLAKE2b-256 eeec94175daf5ee08222779ca3c1eb9b5f742baa70f1cd6957cb584152b60ae6

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b98e9096836fdcec40c06a84c27ffcdcd4e7b3ce2bb660460ed6c974b0f487c
MD5 5d78ec353383fe581895ed622e8ab14d
BLAKE2b-256 f030f1af7fe0f01ebf92d03d22921041f71d7c19ac42d290b5380dfac03bdd3e

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5ce5452a23658bfa0f84996e2540ef9655e43b204c6b7e45786cf917f0727c6
MD5 4a3ff279f2074d214ae01e738b56e937
BLAKE2b-256 92ef05a0810a96799e694f03797fba9fb50338a97e0187660c21950b5bacb875

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d238039577194e633f16840f08f98b5fb1b87d3f45c84a3f75aa65416710b36
MD5 0b78bf7294014aaae55a2cc07f105e37
BLAKE2b-256 cf54fb1eabf8488afd494573f90bca0b1926123578a99de49a1b5ce588883243

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f32d418480d190a6b0d2dc47a19e3e87765ae4880e99e8cc8b87f34fa30d06a3
MD5 b7c99c468273dd364aefd7d94c73ee00
BLAKE2b-256 64fa6cda1de4f515147e88ca7ca0f56964f21f6f615bf6a7494f26c35e58ca07

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e49801b7622b270975f8040edde457bbebb949a808eff35cc56b49bbc0e6502e
MD5 e56ff6d7860bc3dc38942d9d5023fc82
BLAKE2b-256 499d580f51f3ff009568639203e1b693145659212342bf5873b26164837d43d5

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e08b596ab9df5b6512289e51ba02b052e9b5dba66ff6cebcc1677af4bac45dfb
MD5 74f40a97b9a35c258a37cc5d3e7c1476
BLAKE2b-256 91cb52c3f6277438b06d5451c63bec1785fe02d5662e937bb09489709876ad68

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf0a89b46ef6f49119f86594599f28201d05bd097ac265a58bacbdc510fa66e5
MD5 64873c37ec6a2cf08bf8c53a1edd200c
BLAKE2b-256 a25f210bc1d19d017f17c416f3c706c205ed5a314002efe9e4d64308902d2b75

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4628d4d398455972c390f7feae37cb817953272a631c14e076493274aaaec690
MD5 a27bfc9d515931a1c8eb1dab17fee50d
BLAKE2b-256 7715726cc4acecd502d602b20533d1063dcdac78a77317588dd9804ef0e40a42

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5351af0c4f60ac1863ab598ddbd6e2d562d718b06f9becdebbfa2fa724f72cdd
MD5 5edd963607d9620f7963b2fca80b56cf
BLAKE2b-256 aa3c8c06971bee07323134d69b287a5e40df63dfeb8b33c30e4ed7b70b43d5b0

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7a00069014557eb7389843d5025bb42b661bbd482b589ec2f9ab0870bc5e1cd6
MD5 23289f44dd8cd45baa39e124e6d81aca
BLAKE2b-256 4b1f22e49673802fcef93a26456e009a639b9a8f3c887d64242880ea89e9d4bb

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c194e5131e1ef14eb9b4c93c1d0c6729bf9dae28dff85005bb388d7ada5e1373
MD5 d6ba7463eaf56c20ea9a2ca07e09bb2e
BLAKE2b-256 fd473a390d1fdea797c722247589bd44de7553012f1fe6d4303e6ab9fd5162f4

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21687c9ed666f8eb04dee31f569b9bb51d3c32f28cbe4dd6f98f00d9f2ce7c43
MD5 c6b906fe38f738d059f1361492749410
BLAKE2b-256 dfc1530b1cac4c5589645cca7d323f4777b8f9b1bca92ba64a477e036d3106ad

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30ca5f403ba665c4a541acfe16ac60dac9f54c7b5c9ad60bfd3d2bb7d92af534
MD5 4ab3aa334e98b7879803580cda1bc513
BLAKE2b-256 a0a3ed2232b3c16c4ba750563793e223692d3a4238214e2b827ad5983faa64ff

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3453bb31b6a484b304d20baecdc4e1e4ad38148aac870d9267abf302e1620229
MD5 0d15341af7cb18cf418585293d776545
BLAKE2b-256 f4557e4d686d146e50a4cdaeaa2570cdc03168c72d05e22a3355e272cb6ddabd

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75807c3ece5e379a89bc2b243c11e4bd184a9634e246037331199c2972802332
MD5 e9bb2c415409b448cc398661e4a9e722
BLAKE2b-256 4acaa498ae7dae414a5e82e439a10815ce4ce0719e453dfa5a752044e4b893c8

See more details on using hashes here.

File details

Details for the file polyhedral_gravity-3.2.1-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for polyhedral_gravity-3.2.1-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f146751b3e7e557c6af322b49bd23b5b47c21b074e1316a60de5b525a5baa375
MD5 23c9955038b921c8fcf186e6e1c8e826
BLAKE2b-256 776396c00b9202b4a015aaae14a1299c90a50fccf55f85247211794400e67a97

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