Skip to main content

Python bindings to the clingo solver.

Project description

⚡ Overview

Clingo is a cross-platform solver for Answer Set Programming (ASP), developed as part of the Potassco project. It runs on Linux, macOS, Windows, and can also be compiled to JavaScript for use in browsers and JavaScript environments.

ASP offers a simple and powerful modeling language for describing combinatorial problems as logic programs. Clingo takes such a logic program and computes answer sets representing solutions to the given problem.

To get started, check out our Getting Started page or try the Online Demo.

📝 Resources

📦 Binary Packages

💚 Conda

Binary packages are available from Anaconda:

# stable
conda install -c potassco -c conda-forge clingo
# development
conda install -c potassco/label/dev-20 -c conda-forge clingo

Packages have to be installed on top of the conda-forge channel. The Miniforge distribution ships a conda version configured to use this channel by default (see Miniforge installation instructions).

  • Supported platforms: linux_x86_64, macosx_14_0_{arm64,x86_64}, win_amd64.
  • Supported Python versions: cp312, cp313.

🐍 PyPI

Python packages are available from PyPI:

# stable
pip install https://test.pypi.org/simple clingo
# development
pip install --extra-index-url https://test.pypi.org/simple clingo

Development packages are available on the separate package index at Test PyPI.

  • Supported platforms: manylinux_2_34_{x86_64,ppc64le,aarch64}, macosx_14_0_{arm64,x86_64}, win_amd64.
  • Supported Python versions: cp312, cp313, pp311 (manylinux_2_34_x86_64 only).

☁️ Cloudsmith

Packages for Debian and Ubuntu are available on Cloudsmith:

# stable
curl -1sLf 'https://dl.cloudsmith.io/public/potassco/wip-20/setup.deb.sh' | sudo -E bash
sudo apt update
sudo apt install clingo python3-clingo
# development
curl -1sLf 'https://dl.cloudsmith.io/public/potassco/stable/setup.deb.sh' | sudo -E bash
sudo apt update
sudo apt install clingo python3-clingo

Note that only Ubuntu 24.04 (Noble Numbat) and Debian 13 (Trixie) development versions are supported at the moment. Newer distributions or additional architectures might be added later if there is demand.

  • Supported architectures: x86_64.

🐧 Ubuntu PPA

For Ubuntu users, a PPA is available for easy installation and updates:

# development
sudo add-apt-repository ppa:potassco/stable
sudo apt update
sudo apt install clingo python3-clingo
# development
sudo add-apt-repository ppa:potassco/wip-20
sudo apt update
sudo apt install clingo python3-clingo

Note that only Ubuntu 24.04 (Noble Numbat) development versions are supported for now. The packages are more or less the same as the ones for Cloudsmith but build and shipped via Ubuntu's Launchpad.

  • Supported architectures: x86_64.

🛠️ Building the Application

📋 Requirements

  • a C++20 compiler
  • re2c
  • cmake
  • ninja (recommended, optional)
  • python (recommended, optional)

🏗️ Building

The instructions below work for both single-config and multi-config generators. For faster builds, consider using the Ninja generator by adding -G Ninja to the cmake command.

mkdir -p build
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release

📥 Installation

The install target copies the built files to standard system locations, as determined by GNUInstallDirs.

cmake --build build --config Release --target install

Avoid running the install target as root or administrator; instead, set a local prefix using the CMAKE_INSTALL_PREFIX variable when running cmake. If Python support is important, installing into a virtual environment is a good idea.

🐍 Building the Python Module

It is also possible to just build a Python module for Clingo, which allows you to use Clingo from Python without needing to build the entire application.

📋 Requirements

  • a C++20 compiler
  • python
  • pipx (recommended)

🏗️ Building

Assuming pipx is installed, build the Python module with:

pipx run build .

📥 Installation

It is strongly recommended to install the package into a virtual environment to avoid potential conflicts with other packages or system-wide Python installations. To create and activate a virtual environment, you can use the following commands:

python -m venv .venv
source .venv/bin/activate # Unix-based systems
.venv/Scripts/activate    # Windows

After building, install the generated wheel file from the dist folder:

pip install dist/clingo*.whl

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

clingo_funasp-6.0.0.post11.tar.gz (11.3 MB view details)

Uploaded Source

Built Distributions

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

clingo_funasp-6.0.0.post11-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post11-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

clingo_funasp-6.0.0.post11-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows x86-64

clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

clingo_funasp-6.0.0.post11-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

File details

Details for the file clingo_funasp-6.0.0.post11.tar.gz.

File metadata

  • Download URL: clingo_funasp-6.0.0.post11.tar.gz
  • Upload date:
  • Size: 11.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for clingo_funasp-6.0.0.post11.tar.gz
Algorithm Hash digest
SHA256 01c30237d8a33b6890907fa746f01816c779555bf5162a75a51eb26e702367c8
MD5 516cd05c14baf8be971aa4d7018cc29c
BLAKE2b-256 c8efae110d40efee1eace1db358064dba3f1c77df7a3e222d3775c222b2ba3c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11.tar.gz:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0f49d8686c577db363780eba9b4c1762bd7f44d073af50fbe1206750006e3ddc
MD5 3291c63148e2f60cfeba2e05641ba6a9
BLAKE2b-256 503a92a99524f12801aad9fa982b94ef2ea59e4cff67d86f52d09c06033e7503

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cb3abf6892c4a0ddf5a20ea5f7e592a6a0f0c922a5b740200c2432b43d77b83b
MD5 68a1ee84acb38ee0915e68772b58b78a
BLAKE2b-256 e804d22efbd3b4600248ca4b70f4dd396b5692aa231212a78ec656cf40710b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp314-cp314-win_amd64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a239b2d602340e1277008513962e458bf648e6fa4c1a787beba58b3f6dbae568
MD5 12e92740e050f9572ba48acb4cb9884f
BLAKE2b-256 dc49edf3f52d7aac0214a8a5cb41f42a840b3b5ffcefb523b8010981efe620ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 acaa820e01b9629c546f627aee6b1bfe4ec9fca2dccaffc93af60dd3538d5dab
MD5 de928207725e516b55dda93a8e6f9868
BLAKE2b-256 6deb11c24a55bf786585b6ceda98a321621698c013ed28414f39586e04486995

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_ppc64le.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 09a6320bb16ec2f61f8858d20c112084cb125476a337fbe373086c2d2aae9beb
MD5 ea3104004881de4fc78944ad060800ce
BLAKE2b-256 bd26e62eab4d489998304262e000436d49c2fa5f51d9a9aaad4063b1dbb5f000

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp314-cp314-manylinux_2_34_aarch64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 9ff457cd038ce5af28f8e50e62862c5e8dab79b33df77a5ce52a6a6de09580f9
MD5 70b26e470b6f22adaf2d6020978f794d
BLAKE2b-256 fa12f43dbbefbe0cc994e5f28ae5a1fb141802228053c51ad4611fd6e7172f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 88f96f2c91589f48055ae1ed10f8e11afb89b88516fbb40e3eccb85b6f753b46
MD5 9e3514fd88b59cba3c2bf8980a50b074
BLAKE2b-256 63299afa2057e4ce31deac10d81bfb7c1f6a9bb62159b435f5f89a16ce731a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c4e2b891397163e86db6807e44d987646a951575ae11b263bf6822582c95e487
MD5 cb2a2c47e8c6c8051a21cce8ee01c6da
BLAKE2b-256 73c3eb1edda3d93c4c0f6a21fc050e59abeff6d08cfd092c599a304d8c0a8ac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp313-cp313-win_amd64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 31506fdbdb761873f419b9129120cec5c39a9f854c099d8942fc5ec6f492554e
MD5 750dc9b68c382933ae701bf5b67d7d55
BLAKE2b-256 ad355e2192bc97a1d2f5273da019ce9786d2890d76af4e6586e4f0870d559244

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 5b1c1408e8a22dde2ad0fe770d951be06ef626da1d5d66d1fea7b207c1d507a5
MD5 1b882e68797bd94ceae22d9dcd59309c
BLAKE2b-256 67cecb4d123d322a6b5629e30adf973f7cc3da0d9913d785a48617dcc3c5c4ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_ppc64le.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 6cc6333eb7ed767276070d801f7c44b3e521b6c88d8037d14d881aff57acbb10
MD5 1a0995b1ecaeeb4a7268e0ccf49e1239
BLAKE2b-256 281fca4598b1d89de41237bf50e71e02ac62c46a3ac0c823e528bf8c79d1f107

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp313-cp313-manylinux_2_34_aarch64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 71d26339e2f8fb82edf7d48623e68615199d1298bae66044beeb9adc04161d7c
MD5 8e99ecd361d9f5b8cb4bdbe1b3a60498
BLAKE2b-256 f05533a403489797358316dfbc256cc36829f90db4a597be9b059d3fa1d33803

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 450a8c2a90fdd74cfc44db43ded0350c9d65e32f112d016b812b0388d43f6473
MD5 a56ac5a7a43571e42d90105d44f6a19d
BLAKE2b-256 e53ed3f01ed755306adedbdae8b1bb90add45f96c2bf03dbc95b24fd6791dd50

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c53dd26fb9eec6e06f25ba176a32801a1ee7ff353f9eff25725daecaa48ecc54
MD5 a27592a7696690fb42fcc55ff107f97a
BLAKE2b-256 96a5a385191c57009495afc9d094b864ef230f74f5bef8c8378cd320b14ad767

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp312-cp312-win_amd64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 97f464d7b80a708733e7c84269ffb5f1a756a8da85495f921f5c2f30797be60b
MD5 d3446b6bc2768e2cb4cbbf9afaede42b
BLAKE2b-256 8d5776161621be529dbe283b264dcb558e55721f66fe4d633bb871ec837d63bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 896fac54ea1744115929dc2d90da4d85f8cf5dc2584466467552ca6ff8c8ab79
MD5 6dbafee7ab1e652a54a579c2dedd1d65
BLAKE2b-256 d36b8419875d19c99cefa18fedfaf524214de6d6315b5d93b1925fa86813824f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_ppc64le.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 50b3f86fa38d2513f3bcdd25bf55efb1ceb2c7a3a440d4308d05f7e2e563530c
MD5 bd98d388515738e08fbaa28adbb3da81
BLAKE2b-256 faa6b80dc4ebd2e6b5c2624325a7bd9766ffb5defb9a3269c3f6645338cab851

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp312-cp312-manylinux_2_34_aarch64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 4cb9c72636807b6df45ed8592aeaf519281ce271da5113d3c766d4f47951a002
MD5 1e81ca26ff445d247576d9086ff10a3f
BLAKE2b-256 2b9e038a9a7b013e6116ea2468fd8ee1588687f1a4712e7e037b1c9e2d120945

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

File details

Details for the file clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b002038f5c49679d0675aa5d343b00dff972dc1ad5d922b9279ca524720787a1
MD5 b01c5de5c845af2e08c39cc6ad8502fd
BLAKE2b-256 51076ea138ad810b6e9e68bfd9d92dff80af84f35310536f600e3b5aa232d2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post11-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

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

Supported by

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