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 flagship 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.11.0.tar.gz (331.3 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.11.0-cp314-cp314-win_amd64.whl (706.9 kB view details)

Uploaded CPython 3.14Windows x86-64

infomap-2.11.0-cp314-cp314-win32.whl (577.2 kB view details)

Uploaded CPython 3.14Windows x86

infomap-2.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (12.2 MB view details)

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

infomap-2.11.0-cp314-cp314-macosx_15_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

infomap-2.11.0-cp313-cp313-win_amd64.whl (691.6 kB view details)

Uploaded CPython 3.13Windows x86-64

infomap-2.11.0-cp313-cp313-win32.whl (566.2 kB view details)

Uploaded CPython 3.13Windows x86

infomap-2.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (12.2 MB view details)

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

infomap-2.11.0-cp313-cp313-macosx_15_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

infomap-2.11.0-cp312-cp312-win_amd64.whl (691.7 kB view details)

Uploaded CPython 3.12Windows x86-64

infomap-2.11.0-cp312-cp312-win32.whl (566.7 kB view details)

Uploaded CPython 3.12Windows x86

infomap-2.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (12.2 MB view details)

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

infomap-2.11.0-cp312-cp312-macosx_15_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

infomap-2.11.0-cp311-cp311-win_amd64.whl (690.6 kB view details)

Uploaded CPython 3.11Windows x86-64

infomap-2.11.0-cp311-cp311-win32.whl (564.5 kB view details)

Uploaded CPython 3.11Windows x86

infomap-2.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (12.2 MB view details)

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

infomap-2.11.0-cp311-cp311-macosx_15_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for infomap-2.11.0.tar.gz
Algorithm Hash digest
SHA256 d6eea9e97fd808c8c300ba563b8f1594a3f937185a7c0bf4573e9dc20815c46a
MD5 141cc1e17f37c1c9c09e9076d0238802
BLAKE2b-256 89759aa9216019b075f643420b03e4dd55a68f151804123412c60bfea53581b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: infomap-2.11.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 706.9 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.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 667d9a962d90b8fe7451dfb86c30c0d1aab8fc13d87b9e39421d36de9e540d91
MD5 b8c78cbeb611f90e1a29e5b5be129a4f
BLAKE2b-256 cfba24a8e327a094214d5da66f08d8b33ed045faf618b79e67e678e590cb61df

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: infomap-2.11.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 577.2 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.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 77e85598ff68719c161683ba81108d934367fbc989b61bc272ea9e4bcbd914df
MD5 69acc24d358802dc38245918821c1f29
BLAKE2b-256 c88df07ece6a597c53e00bd07f93dc25ba8f8636911b19cf00317c91c234a62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eec83fa42900720c85dfba6ac79dad7774ade54d37c8d56df08dfc490bb9814e
MD5 efd58b63897822d6860ebb22b45fb06f
BLAKE2b-256 b4f557241db3658d6880232fcc76b48a8da4ad04adeccfad9dddae3bba3db448

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c444d55caca46c71df0d4945091f16d09f7520be5d8edcfb5eaf486dd4943e70
MD5 4ff247b50588bf0661660866ef11e15f
BLAKE2b-256 58314bc594309651b44a5fb90baec5dc634e3438e13682309f11b737f37d1771

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: infomap-2.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 691.6 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.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e8b14914628d77d996e595691e65d71f24689b6c6cfc8fe36468d593c42021f3
MD5 3d71c2e7b9e8c60791a213331aedd006
BLAKE2b-256 0433665e0251a3b188d602816b41afab2bcf7120a9ca8fd787ddf6580bca6456

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: infomap-2.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 566.2 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.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 02ae175f1ae3331ab05657e14dc5b78ed303f9fdf94d584c2ea7eae7dd2339f6
MD5 bce8ff8c5f66b5c33e5fa760d37d4fd9
BLAKE2b-256 60e759807f03428524c2b4de8142f49039e2253250b74ce8928548e4b81ab37c

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 382e7ad46d2fa9f977c67c31fec9a5798b8a28b0009614f39ffd4298929e0a13
MD5 7462b9e59425f36a1ef8146126e8c438
BLAKE2b-256 978ad59d414cee709fbe82e8acb79515ebcbca375159cf8735f35acac1e2cfff

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 965107115826bc8f7b9edceca5e160fd1bd52700479a2bb5e2d81ab6879f3ff7
MD5 f774e9742d2980afabaf3faf7998554f
BLAKE2b-256 67ddeb7f2f3dc5a27b2141ddd64513f7e117781dc6bf70dd029b726d72d83561

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: infomap-2.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 691.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.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 47d1291e237aa200bb50071f43d868e35640beba10218f3d328ecb2d081edd07
MD5 08d2097d77ad427b5306c6897185d835
BLAKE2b-256 ec00d825f6666d7231633a86843607ac38c41d756e7f74b7fa4f40097d8cf1e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: infomap-2.11.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 566.7 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.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 116e5988691b419de72f7475f4c7bac527adc946b3fb5981ac82c2358456a86c
MD5 bf1732d7ee3d72439d68ca2dd72bc442
BLAKE2b-256 5bfab37272a2597ecb0781177fd185d852614b9ebbeed96403564d3fa147b7f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd186500a5ccd48ecad797ca5a0f5c166497916319b4378afce174363cd470e0
MD5 50cb0c8b95d171c9ac5203386a483429
BLAKE2b-256 f56148109f6f92b219fb2b867d22b759d6476b96dd431c9d2b616bd88e4e550e

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c80acc902f0d00611afea195d1750b31cbe113d29b8b329766b62de701b13ffa
MD5 911089d40ec0f09bf4cf5d3f34ff0330
BLAKE2b-256 ae055aeb3b479e199dfa4ce19e05d10104703f48470ea21bd6ec2c2206e4bd4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: infomap-2.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 690.6 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.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03f928c8fd1b5856d9b0c493dd8906405abca72831a8894d75c6b75cdb1d67d3
MD5 fb8ed75285e53f4ad3438f83f216d940
BLAKE2b-256 5f4f8504a6ec3055e850519e861046618d04dac2c9ea492988b6fbab9d2f3633

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: infomap-2.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 564.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.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bfc1c03c280037766c75b6ea79e0ae3e3233bcbe923d92e59b2374b82b5de85a
MD5 ca0da48f10cb8f758eb8947da39d398a
BLAKE2b-256 266dccac574eb8edad04f67dae358b505e2ee9c2bed851ddfeb5f3e6250317a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d361d0c0a8cb1f6169bd84f6ca01640ea681a9eb37bafa50c44aabfca858ef73
MD5 5e9caec345ec697191ced86b15f822c6
BLAKE2b-256 c73d753ae3be29e3c96c2b557f7edf9cad300cfb530798e7d20bfffe0503b1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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.11.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.11.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f31b3d17c7e97e0e6c5c54753bd93915c4bb09568ba28fab7c451b6ffae6ccfd
MD5 3120b5626ea74864f64c36e5671f04f2
BLAKE2b-256 43e40090bedf2a9bbcc1511edfb0032a7f9f796ceace157eb96d2e765c9b9a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.11.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