Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Simcoon

Simcoon Logo

About

Simcoon is a free, open-source library for the simulation of multiphysics systems. Its primarily objective was the developement of constitutive models for the simulation of heterogeneous materials, but now goes beyond with tools to facilitate their full-field simulation. Together with microgen for the CAD and meshing of heterogeneous materials and fedoo our Finite Element solver, we offer a comprehensive simulation set for the in-depth analysis of heterogeneous materials.

Simcoon is developed with the aim to be a high-quality scientific library to facilitate the analysis of the complex, non-linear behavior of systems. It integrates tools to simulate the response of composite material response and thus integrates several algorithms for the analysis of heterogeneous materials.

Simcoon integrates

  • a easy way to handle geometrical non-linearities : Use of Lagrangian measures, Eulerian measures and cumulative strains considering several spins : Jaumann, Green-Naghdi, Xi-Meyers-Bruhns logarithmic. With this last measure, cumulative strain correspond to a logarithmic strain measure and is the standard measure utilized for our constitutive laws.

Simcoon is a C++ library with emphasis on speed and ease-of-use, that offers a python interface to facilitate its use. Its principle focus is to provide tools to facilitate the implementation of up-to-date constitutive model for materials in Finite Element Analysis Packages. This is done by providing a C++ API to generate user material subroutine based on a library of functions. Also, Simcoon provides tools to analyse the behavior of material, considering loading at the material point level. Such tools include a thermomechanical solver and a software to predict effective properties of composites. Parameter identification can be performed using Python with scipy.optimize (e.g. differential_evolution) and the simcoon Parameter/Constant key system

Simcoon is mainly developed by faculty and researchers from University of Bordeaux and the I2M Laboratory (Institut de d'Ingénierie et de Mécanique). Fruitful contribution came from the LEM3 laboratory in Metz, France, TU Bergakademie Freiberg in Germany and the TIMC-IMAG laboratory in Grenoble, France. It is released under the GNU General Public License: GPL, version 3.

GitHub license

Simcoon make use and therefore include the FTensor library (http://www.wlandry.net/Projects/FTensor) for convenience. FTensor is a library that handle complex tensor computations. FTensor is released under the GNU General Public License: GPL, version 2. You can get it there (but is is already included in simcoon): (https://bitbucket.org/wlandry/ftensor)

Documentation

Provider Status
Documentation Docs

Building doc : requires doxygen, sphinx, breathe

conda install -c conda-forge doxygen -y && pip install sphinx sphinx-rtd-theme breathe
cd doxdocs && make html

open _build/index.html

Installation

Option 1: Install from Conda (Recommended)

The simplest way to install simcoon is directly with conda:

conda install -c conda-forge -c set3mah simcoon

In case of conflicts, create a new conda environment:

conda create --name simcoon_env
conda activate simcoon_env
conda install -c conda-forge -c set3mah simcoon

Option 2: Install from PyPI

pip install simcoon

Prebuilt wheels are available for:

  • Linux (x86_64, aarch64)
  • macOS (arm64, requires macOS 14.0+)
  • Windows (x64)

If no compatible wheel is available (e.g., older macOS versions), pip will attempt to build from source. In this case, install Armadillo (>= 12.6) first — it is the only system dependency not bundled in the wheels.

Using conda (requires --no-build-isolation so CMake can find conda packages):

conda install -c conda-forge armadillo
pip install scikit-build-core pybind11 numpy  # build dependencies
pip install simcoon --no-binary simcoon --no-build-isolation

Using Homebrew (macOS):

brew install armadillo
pip install simcoon --no-binary simcoon

Using apt (Debian/Ubuntu):

sudo apt-get install libarmadillo-dev
pip install simcoon --no-binary simcoon

BLAS and LAPACK are found automatically (Accelerate on macOS, system libraries on Linux).

Option 3: Build from Source

Prerequisites

Create and activate a conda environment:

conda create --name simcoon_build
conda activate simcoon_build

Install required dependencies:

# Compilers and build tools
conda install -c conda-forge cxx-compiler fortran-compiler cmake ninja

# Libraries
conda install -c conda-forge armadillo pybind11 numpy gtest carma

# Python testing
pip install pytest

For x86 architectures, you may also need MKL:

conda install -c conda-forge mkl

Build Instructions (without conda)

  1. Clone or download the repository:
git clone https://github.com/3MAH/simcoon.git
cd simcoon
  1. Install required dependencies using your system's package manager.
  • On Debian/Ubuntu:
sudo apt-get install libarmadillo-dev libgtest-dev ninja-build
  • On macOS with Homebrew:
brew install armadillo googletest
  • On Windows with vcpkg:
vcpkg install armadillo gtest
  1. Configure and build the project:

For Python users (recommended):

pip install .

For C++ development:

# Configure and build
cmake -S . -B build -G Ninja -D CMAKE_BUILD_TYPE=Release
cmake --build build

# Run C++ tests
ctest --test-dir build --output-on-failure

Development Workflow

For active development with both C++ and Python:

# Install build dependencies first
uv pip install scikit-build-core pybind11 numpy

# Editable install (uv applies --no-build-isolation automatically via pyproject.toml)
uv pip install -e .[dev]

# After modifying C++ files, rebuild directly
cmake --build build/cp*

# Python changes take effect immediately (no rebuild needed)

The editable install creates a build directory at build/{wheel_tag} (e.g., build/cp312-cp312-linux_x86_64). The [tool.uv] config in pyproject.toml disables build isolation for simcoon, ensuring the CMake cache references your actual Python environment, enabling direct cmake --build commands for incremental rebuilds.

Auto-rebuild on import: Importing simcoon will automatically trigger a cmake rebuild if C++ files have changed:

python -c "import simcoon"  # Rebuilds if needed
uv run python -c "import simcoon"  # Also works

Note: If you add new C++ source files, re-run uv pip install -e .[dev] to reconfigure.

Build Options

  • SIMCOON_BUILD_TESTS (default: ON) - Build C++ tests (CMake only)

Notes for macOS

For numpy versions earlier than 1.26.4 using the Accelerate framework:

pip install cython
pip install --no-binary :all: numpy

Authors

Download files

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

Source Distribution

simcoon-2.0.0b1.tar.gz (2.3 MB view details)

Uploaded Source

Built Distributions

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

simcoon-2.0.0b1-cp314-cp314-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.14Windows x86-64

simcoon-2.0.0b1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

simcoon-2.0.0b1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

simcoon-2.0.0b1-cp314-cp314-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simcoon-2.0.0b1-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

simcoon-2.0.0b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

simcoon-2.0.0b1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

simcoon-2.0.0b1-cp313-cp313-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simcoon-2.0.0b1-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

simcoon-2.0.0b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

simcoon-2.0.0b1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

simcoon-2.0.0b1-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simcoon-2.0.0b1-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

simcoon-2.0.0b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

simcoon-2.0.0b1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

simcoon-2.0.0b1-cp311-cp311-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simcoon-2.0.0b1-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

simcoon-2.0.0b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

simcoon-2.0.0b1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

simcoon-2.0.0b1-cp310-cp310-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file simcoon-2.0.0b1.tar.gz.

File metadata

  • Download URL: simcoon-2.0.0b1.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for simcoon-2.0.0b1.tar.gz
Algorithm Hash digest
SHA256 04ef166a903c49167dd85b43b9c569ef776ae40929e09546ebb4f67d020770ef
MD5 282ac22322c2f2b340740196a37fed03
BLAKE2b-256 9dcf0997e12d5a70cf07ec07f721ec4eb470a0aa2dd8367118c53a333ce8a6c3

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: simcoon-2.0.0b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for simcoon-2.0.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 780f009321a096d4915ee84670bdc57522a0524f61c32b2814ab6c26f0e1748c
MD5 6fdd663c9b05b614e23e52319961afa3
BLAKE2b-256 4e2a6790cacd70c5a4d3259247f4fa1f03e25e99d694032fad06cbf2ba3e4377

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0755194aa7b821cbc3b9eee778ce4705370c76b6b108f3e2130119a933400771
MD5 d58f2840af15c712ab42b95163d5a3a7
BLAKE2b-256 5fa311e4f7432a36b5c350250dd620fe4f188bd1158e54ba6431fa76a8f2cb7d

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d61caaadbb5560f7ff19fc320b1938cf51a49869769d69263dfe2e2227fb3ab8
MD5 d66908e53ed8418f2044ef1b51b65b65
BLAKE2b-256 06d9a3868f08e9916140b4305dff7257267db53ec15f949fb18e496099e99c0d

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08a55691ae04e1d1f67e3713285c3b1f2186475d602e4403560939d9fd9f4782
MD5 89141f7a736fbb1197729bb4f84e70cb
BLAKE2b-256 40ab9f77d7bf8bc6dfcc722b592e6164129b69ba01aab41247d1912fc7b69032

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simcoon-2.0.0b1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for simcoon-2.0.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ebf25e477b5e07de5fd8823d0303aaef37c2b7e6cd22fdd3d371fe3de6b1fc0e
MD5 5d94564bdcd6be1c354985370b95b985
BLAKE2b-256 220e990eac2f833fc4ed8ae14f250d2602eb8afdfaa21479d9e4e377f3a083ff

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 014cf8cc1237d3ecd8cdeb9a4a980b84d4d745e8eb8769ee275185ec66062fca
MD5 d828c38fc1db901f7d9550e995763ebf
BLAKE2b-256 656a8b4f4d6fc6604a9905c71ac0cf119c1f6673109e3540cb78342ff09c4e87

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42f7872433d9efd468d2b346ebcdded94a0a54dbdeeff962788a5548bcebee8e
MD5 8397a21fe7490ec198cad735ef8cacec
BLAKE2b-256 1ae9d77c68ea9a76a4a34721b855e3308a52113069b2cd3ff63bfbbe5d2fb271

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 880279b7695c33d2ebe331a5d6b94000ab8632ca219bd77775ad90b7fb85ed36
MD5 1d7df47c198d0df22ebfabb752d2cb24
BLAKE2b-256 67c85b8a100ff1bf06ea5dca3684e7c12ee18867b7b59ea2f81d995abc963835

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simcoon-2.0.0b1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for simcoon-2.0.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 209bd8b89af89fc790a44b9a81435f2372a34504b004d74dafd5f3bc8168d1c4
MD5 ae2b522a8334f48a4b96866186ced3a8
BLAKE2b-256 678f8fe62ba82924016e7418c30a1c3835f23065eee2fe49139169d413822d3e

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e57e52cbe86365bfc984c1f7c8e59b8bf04ac14f638d4090e73437d9e7aac5b8
MD5 34ff84820f3e54412aba2e8ff3ee1204
BLAKE2b-256 22b9895726c57caf9c6c6e6be1ee136e1642d352fbe05f3236b7d95982434f41

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84ed390be2273f338fea4ff3bf955df6f80c884f261c369b79f975c6f3a62112
MD5 8a26ebcadc6bcb75cc7f72618d22e1da
BLAKE2b-256 5bd40b4bfebc96352243ef64cb97e3a17863e61d20d016f8c23768cf9eee8c08

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bd4345c1607c40d87a355fb512a2d0eb289bd6d21b35e0ffcfa35b6fc04f201
MD5 9ecbceb8da9dc5a5fd2073a3331baeca
BLAKE2b-256 73f2269e315ddadf4a724b174c1cd859a4b91795933ccbcc7512f8d476e12153

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simcoon-2.0.0b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for simcoon-2.0.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 166eb1f10f8fb52f5af9ed4de93ba2d99352325f509c8f4cd926a6c0dfd54a89
MD5 41155fbef48cbf8254590e824548c3d6
BLAKE2b-256 f78b4cd166b53768e89ef58a1f7fa2715af00a9e4a4bde5ce94006a4b52543c9

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 755f2c86b340feaa6c0146f2a4da9337439876779da5c4d8e183b63023c53f8b
MD5 5f81c403c6dc12a2c2cc766fcf84a2ac
BLAKE2b-256 1dc767b782e2b81dcb407b8a2fa55d17df2923651ad81bd9ce57fd26c7baa66b

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5475908ffeb5902ecabea69ef24939fb281b92ff3cdc28b8e7daee4a677fb4c
MD5 8a63a77dca66447a28d882122aca4fb9
BLAKE2b-256 fedad84467b442d2063bc1e5df1deebf72f35cba90bc501795599c0c3a58c659

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51b8dfc6c770dcaeaf2cbcb2c357279d44e4470414a66d638b3dcc871dc83476
MD5 7efbdcf92c34ae0abe41b423a1d08ba7
BLAKE2b-256 1c2304d139aa9fb87f56d454ade3bca677a838a8e613b9f20076310b4c30f334

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simcoon-2.0.0b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for simcoon-2.0.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f3d4865133eef0f27a0b89df637e96f1dbbd67206ba4295f1e7852ac3c19eb45
MD5 2ec0adfab9b039824ee0d2b18760791c
BLAKE2b-256 df2bb416837f387a0c57e54aaa17f8e9c1bb1d2c95ed5e50461775f727efc217

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89dbe9be913cbb3336d0a1d35997ba71da26a19c07b6120032ec7defa66985b8
MD5 2a73604aedb076a9bdf7a49f20cc7bc3
BLAKE2b-256 d5ef54431e6b509cea8673a2cfa45c3080aab9f03f8231118ff74926ff6ae854

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4597fb71abb900a65eb162f006dbfebc0be555a0ff56a28c6826b98db1b0142
MD5 316a25de1d41c02bee3e72140d8d08b5
BLAKE2b-256 55990b9a2520b449e68319cfa92f0984caad6f9045ee888de9b2cb8a5aa933e1

See more details on using hashes here.

File details

Details for the file simcoon-2.0.0b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-2.0.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9172e18cdee0090fcea1117f90c31491abe288215a180cab3ef523fd41171353
MD5 ec5c168467052d507388bebeace38ad1
BLAKE2b-256 1fd0fe1bc1ad94073165447d585640e1f20278e586e4aff8f94b08ac8d445c3e

See more details on using hashes here.

Supported by

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