Skip to main content

Infomap network clustering algorithm

Project description

CI

Infomap

Infomap is a network clustering algorithm based on the Map equation. This repository contains the native CLI, the Python package, the R package, the JavaScript web worker, the Docker images, the tutorial notebooks, and the source for the published Python documentation.

Start with mapequation.org/infomap/ for the user guide, the Infomap Python API for Python examples and tutorial notebooks, and CHANGELOG.md for release notes.

For contributing, security reporting, and maintainer workflows, see CONTRIBUTING.md, SECURITY.md, BUILD.md, ARCHITECTURE.md, and AGENTS.md.

Install

Python package

Install from PyPI:

pip install infomap

Install optional integrations for common Python graph and analysis workflows:

pip install "infomap[networkx]"
pip install "infomap[igraph]"
pip install "infomap[pandas]"

Upgrades use the usual pip flow:

pip install --upgrade infomap

The package also installs the infomap CLI entry point. The Python API reference lives at Infomap Python API.

Quick start with Python:

import networkx as nx
import infomap

graph = nx.karate_club_graph()
communities = infomap.find_communities(
    graph,
    seed=123,
    num_trials=20,
)

print(communities)

For Jupyter, start with the quickstart notebook. It shows the notebook-native Infomap result summary, dataframe inspection, a copyable static network partition helper, and export paths for further analysis.

For direct control over Infomap-specific options and result access:

from infomap import Infomap, InfomapOptions

options = InfomapOptions(two_level=True, silent=True, num_trials=20, seed=123)
im = Infomap.from_options(options)
im.add_link(0, 1)
im.add_link(1, 2)
im.run()

print(im.num_top_modules, im.codelength)
print(im.to_dataframe(columns=["node_id", "module_id", "flow"], index="node_id"))

R package

Pre-built binaries are published on r-universe; this is the recommended path:

install.packages(
  "infomap",
  repos = c("https://mapequation.r-universe.dev", "https://cloud.r-project.org")
)

Quick start with R:

library(infomap)

im <- Infomap(silent = TRUE, two_level = TRUE, num_trials = 20)
im$add_link(0, 1)
im$add_link(1, 2)
im$run()

print(im$num_top_modules)
print(im$codelength)

See ?Infomap for the user-facing constructor plus the InfomapClass method and active-binding reference. The R-specific source README lives at interfaces/R/infomap/README.md.

Homebrew CLI

If you want the native CLI without the Python package, install the tap and formula with:

brew tap mapequation/infomap
brew install infomap

Or install directly in one command:

brew install mapequation/infomap/infomap

Upgrade the CLI with the normal Homebrew flow:

brew upgrade infomap

The Homebrew formula installs Bash and Zsh completion files into Homebrew’s standard completion directories.

JavaScript package

The browser worker package is published on NPM:

npm install @mapequation/infomap

Docker

Multi-arch images are published to GHCR for linux/amd64 and linux/arm64:

  • ghcr.io/mapequation/infomap:latest

  • ghcr.io/mapequation/infomap:X.Y.Z

  • ghcr.io/mapequation/infomap:notebook

  • ghcr.io/mapequation/infomap:notebook-X.Y.Z

Run the CLI image with:

docker run -it --rm \
    -v "$(pwd)":/data \
    ghcr.io/mapequation/infomap:latest \
    [infomap arguments]

Start the notebook image with:

docker run --rm \
    -p 8888:8888 \
    ghcr.io/mapequation/infomap:notebook \
    start.sh jupyter lab

The notebook image includes the survey companion notebooks from examples/notebooks and opens in that workspace by default. To keep local copies or outputs, mount a host directory as a separate workspace path:

docker run --rm \
    -v "$(pwd)":/home/jovyan/work/local \
    -p 8888:8888 \
    ghcr.io/mapequation/infomap:notebook \
    start.sh jupyter lab

The Dockerfiles in this repository are also smoke-tested in CI and can be built locally:

docker build -f docker/infomap.Dockerfile -t infomap:local .
docker build -f docker/notebook.Dockerfile -t infomap:notebook-local .

Or use the local Compose file:

docker compose run --rm infomap

Build from source

Building locally requires a working gcc or clang toolchain.

git clone git@github.com:mapequation/infomap.git
cd infomap
make build-native

On macOS, the default OpenMP-enabled build may require Homebrew libomp. If OpenMP is unavailable, use:

make build-native OPENMP=0

This creates the Infomap binary in the repository root. Show the available CLI options with:

./Infomap --help

Install shell completion scripts manually with:

mkdir -p ~/.zfunc
./Infomap --completion zsh > ~/.zfunc/_Infomap

mkdir -p ~/.local/share/bash-completion/completions
./Infomap --completion bash > ~/.local/share/bash-completion/completions/infomap

For Zsh, make sure ~/.zfunc is in fpath and compinit is loaded from ~/.zshrc. For Bash, make sure bash-completion is sourced from ~/.bashrc.

See BUILD.md for platform-specific maintainer build details.

Maintainers should use:

  • BUILD.md for local build and verification commands

  • RELEASING.md for the release flow

  • ARCHITECTURE.md for ownership and source-of-truth rules

  • AGENTS.md for repo-local maintenance guidance

  • CONTRIBUTING.md for pull request and contributor guidance

  • SECURITY.md for vulnerability reporting

Agent skill

This repository includes an Infomap agent skill in skills/infomap/ for reproducible CLI, Python, R, and notebook research workflows.

Feedback

Usage questions and setup help belong in GitHub Discussions. Bug reports and feature requests belong in GitHub issues.

Authors

Daniel Edler, Anton Holmgren, Martin Rosvall

For contact information, see mapequation.org/about.html.

Terms of use

Infomap is released under a dual licence.

The code is available under the GNU General Public License version 3 or any later version; see LICENSE_GPLv3.txt. For a non-copyleft license, please contact us.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

infomap-2.12.0.tar.gz (500.6 kB view details)

Uploaded Source

Built Distributions

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

infomap-2.12.0-cp314-cp314-win_amd64.whl (785.1 kB view details)

Uploaded CPython 3.14Windows x86-64

infomap-2.12.0-cp314-cp314-win32.whl (658.4 kB view details)

Uploaded CPython 3.14Windows x86

infomap-2.12.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.7 MB view details)

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

infomap-2.12.0-cp314-cp314-macosx_15_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

infomap-2.12.0-cp313-cp313-win_amd64.whl (764.1 kB view details)

Uploaded CPython 3.13Windows x86-64

infomap-2.12.0-cp313-cp313-win32.whl (646.4 kB view details)

Uploaded CPython 3.13Windows x86

infomap-2.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.7 MB view details)

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

infomap-2.12.0-cp313-cp313-macosx_15_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

infomap-2.12.0-cp312-cp312-win_amd64.whl (764.7 kB view details)

Uploaded CPython 3.12Windows x86-64

infomap-2.12.0-cp312-cp312-win32.whl (646.4 kB view details)

Uploaded CPython 3.12Windows x86

infomap-2.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.7 MB view details)

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

infomap-2.12.0-cp312-cp312-macosx_15_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

infomap-2.12.0-cp311-cp311-win_amd64.whl (763.2 kB view details)

Uploaded CPython 3.11Windows x86-64

infomap-2.12.0-cp311-cp311-win32.whl (644.5 kB view details)

Uploaded CPython 3.11Windows x86

infomap-2.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.7 MB view details)

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

infomap-2.12.0-cp311-cp311-macosx_15_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

File details

Details for the file infomap-2.12.0.tar.gz.

File metadata

  • Download URL: infomap-2.12.0.tar.gz
  • Upload date:
  • Size: 500.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0.tar.gz
Algorithm Hash digest
SHA256 fc3da6567d054a9daa2f047115c023f8e15853529a286a349da0ee3b13644e76
MD5 28e1c87f05b76d61bce01a1e3031ac82
BLAKE2b-256 69f6bc213265e734929aac52694168c2e8e9612d42ffda45bc32b5fa4a7a4a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0.tar.gz:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: infomap-2.12.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 785.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e9c76d0debf43561e21af442321ad2a2ae74d0ea602a28045e7eaa682234decd
MD5 080d95fd077dfd52f46e55474bfcc30e
BLAKE2b-256 197e947fb203afda67bb0d6af5695646f616250db9387782ca42324feebf3a2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: infomap-2.12.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 658.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8a3e8a902f5a4a5e1023ab4b794ceda5c775dd9a5bcf92020c2fe6878ad49304
MD5 fcf2a16e730feb3dc341c77ca2a15e3b
BLAKE2b-256 9a2b6c9c1cffda61b410d7420db5a7cffaf4281d70faae8c15d55536a6299e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp314-cp314-win32.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 996a9e3a22535ca69b96827b046e05f8ea817cd86dafde427db7ff44f86d6fe4
MD5 d4fcd88693bf9e1a3685bde683bcb89d
BLAKE2b-256 60d1ef42cbf328ef5c4ea4ca3bbc1bc2042b84f8b58cff2b1acc8cf104ef0adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a02ed2f7b07937ed560d48cebc2ff6880b8dfe154e07bdacf469e509aa056b33
MD5 1c6474f38d18e58b346a00656fd26a4c
BLAKE2b-256 1e46fe800760a4ec2b3b214c8bcd02562d0426d6a7c80d80cc39c370d9d5c04f

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: infomap-2.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 764.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2806282a92950b504fbd0c52f432352ecc1e17fba097757263e00e3ee83ec687
MD5 70887715c8956cab7f797ca6557f493a
BLAKE2b-256 1a665da5dd2f4c608023ea97c41306200d21c7cba3e29b64f3dd9b38afb42c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: infomap-2.12.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 646.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a8386f31f9416c46242493d241c7a6c21624402f51ce4cf407cf3881f20df9bc
MD5 a1f79242880bec766789cdec4c55bfc4
BLAKE2b-256 293b0edfb232ad9011863c027f81ca4cb0ff886fede8c919b538c6dabe645600

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp313-cp313-win32.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9fcd8e54886e82b87889fd0766b457ac41a683a752cd7d18fdea8fffa3da373
MD5 fd4005941ab94fe5077aa56b9d646738
BLAKE2b-256 483372853c3d58608f63fd1f589cae1a0fa24f55d3aa26183690a42d67eb3b3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 19ec71b871857cdffff324ce479ceaf613cd5c7ff3a6279ab20075d60a18c0b3
MD5 01a481f9a92799dfdcef09f8b9379470
BLAKE2b-256 9887eedfe4b42b515b98c4bd8aad6dfa8aa596b86ac0785137b0dcdeecfa178d

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: infomap-2.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 764.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f91bdec121487d85c9d3055f9283353546f112e01e08ed0c2f060f949501a909
MD5 3033a570874672421a213cb95fd9bd8d
BLAKE2b-256 8d2dc9a03ae1d4dac62586b6e9f5e60e222311c678d4aa15277af781cf326200

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: infomap-2.12.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 646.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d88aefb51e1ba8df0cc8ea4966b3036ee367b92b0ee36952efb74438d0f5743d
MD5 6d9d82c330776820ede7f75cc2329338
BLAKE2b-256 599b49e74148379667778b26cce189801c87915ef2a68f55622bfe6671c2d3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp312-cp312-win32.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c09ae24b204a64adf6edaa2183b5816e1728172876e24da1383f0641998f4959
MD5 03f27aa17b72ce4119f3a70de83da5d9
BLAKE2b-256 4c0589a2de58d0fabfb6d0f6734b22068da56777a9e73897aad580981c5cb9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c433eb17433ca6607df5fd41dabf524bab76d1263ccff3a20ab1c2cda1bcadfb
MD5 4c7498904592c4875d8f08ed09788ec9
BLAKE2b-256 b02617c9fbdfd8b0d0125cffb6870f8a5dfc2d4a8f10954888e9d5cb26794d5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: infomap-2.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 763.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b7705d25b0fdf20bb5009eb15741b0b3ffe35b0119c8a67ca77661e6b1db45b
MD5 201789434a16cd1359e18bb28eebd4a8
BLAKE2b-256 b83107cc3b2739f1725182e85850358c39e57204e586b6a5979391d2fd4a5fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: infomap-2.12.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 644.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for infomap-2.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 21b86b9a6b07dea679ca80b08694f029541cf23063289dec667bd1ec06581f8b
MD5 433f0fa2ba5d8c7aa3202000a4638be2
BLAKE2b-256 bccc783873e1ee913d1a9c5bb1ca289d411ba6fa32b2f1ca1ecb219ec5a72799

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp311-cp311-win32.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b210de705bdb3dd825bd827c06327b61720dbe06b4c2823d53a0bdad0b69ace6
MD5 eab35898e60b5dd5803b329a7057284e
BLAKE2b-256 9ebaab8c1d988b58aacd56df55167c3a7d86b3745ec8408370260935ac2ddf2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on mapequation/infomap

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

File details

Details for the file infomap-2.12.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.12.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2bc4a04d5e5abbabd50530594ec4e7351fffc20c3b0e848448dc7f677b67234d
MD5 1d7222f4a6b705c512b204eb6af263c9
BLAKE2b-256 dd5095c9167654167520a11d8a3177df2a34f8fb1d5199e548c0d2c4c43cd600

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.12.0-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: release.yml on mapequation/infomap

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