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 browser worker and Node.js package, 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()
result = infomap.run(graph, seed=123, num_trials=20)

print(result.num_top_modules, result.codelength)
print(result.modules())  # {node_id: module_id}

infomap.run accepts a NetworkX or igraph graph, a SciPy sparse matrix, a (2, E) edge index, a network file path, or an iterable of links, and returns an immutable Result. If you only need the communities in the graph’s own node labels, use infomap.find_communities(graph, seed=123, num_trials=20), which returns a NetworkX-style list of sets of node labels (its igraph counterpart infomap.find_igraph_communities returns an igraph.VertexClustering).

For incremental construction – adding nodes and links one at a time – build a Network and run it, reading results off the returned Result:

from infomap import Network, run

net = Network()
net.add_link(0, 1)
net.add_link(1, 2)
result = run(net, two_level=True, num_trials=20, seed=123)

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

To keep one configured engine and run it repeatedly – or to maintain code written against the original API – the stateful Infomap class works the same way (im = Infomap(...); im.add_link(...); result = im.run()).

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

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 package is published on NPM and provides a browser web worker, a Node.js module, and an infomap command line tool:

npm install @mapequation/infomap

Quick start in Node.js with the @mapequation/infomap/node entry point:

import { run } from "@mapequation/infomap/node";

const network = "0 1\n0 2\n0 3\n1 2\n3 4\n3 5\n4 5";
const result = await run(network, { args: ["-o", "tree,json", "-2"] });

console.log(result.json.codelength);
console.log(result.tree);

Installing the package also provides an infomap command that behaves like the native binary:

npx @mapequation/infomap network.net . --tree

Browser worker and React usage are documented on the NPM package page.

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 license.

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.15.0.tar.gz (722.2 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.15.0-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

infomap-2.15.0-cp314-cp314-win32.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86

infomap-2.15.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.6 MB view details)

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

infomap-2.15.0-cp314-cp314-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

infomap-2.15.0-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

infomap-2.15.0-cp313-cp313-win32.whl (988.3 kB view details)

Uploaded CPython 3.13Windows x86

infomap-2.15.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.6 MB view details)

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

infomap-2.15.0-cp313-cp313-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

infomap-2.15.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

infomap-2.15.0-cp312-cp312-win32.whl (988.9 kB view details)

Uploaded CPython 3.12Windows x86

infomap-2.15.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.6 MB view details)

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

infomap-2.15.0-cp312-cp312-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

infomap-2.15.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

infomap-2.15.0-cp311-cp311-win32.whl (986.8 kB view details)

Uploaded CPython 3.11Windows x86

infomap-2.15.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.6 MB view details)

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

infomap-2.15.0-cp311-cp311-macosx_15_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for infomap-2.15.0.tar.gz
Algorithm Hash digest
SHA256 144c8d73fcf7acd017eb5f0e539c1eb0391db7e81381470a2c432aab15bb4041
MD5 74652993e61f4306abb7612055aad181
BLAKE2b-256 ac654500bd402e7314339e74baa6bcf156f66b8f80cf3a260c054f747002ab45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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.15.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bbd997c67cd43c3a05e143ad1f6232147c10fe6a3a1a99d89868c36314f5aac9
MD5 9c0595f25fbb2b6266d5b775177b10b6
BLAKE2b-256 a98bac6bf7716a51af35263c1e39c9ab65431bf2f2d95abf009eb7bb276a5a47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • 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.15.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 11e0be79da35d34502d6d452d34ca6de6b118ed6494410be3bf9546b723e255e
MD5 63a239570015ceef8880e4c82950f81e
BLAKE2b-256 28693bd051c6bb111cfd21129c6fa6746b7522d74e6bbb3549b342e03d302bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3183b5ce01a26bbb8c82eb391b3e30626723578e3ae405979cb32c453677b8a
MD5 c49c76116bbf2cecffd04102b0d004b9
BLAKE2b-256 f102b2b42d828be5028ee5cc33dd06d07ad87f6af9790e179b13a8ce93e23508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 aee1b09b6c1191131a70602fa7686e243bef62c45c73fae1f4af8f082d890a94
MD5 267d837c3fb3ca9326e204c204940427
BLAKE2b-256 d2c76b095f14b4001cfd7b235d5a7516387a06591b6c351ef0b0562f8292cb65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 632cf298abd6621ffb6178959b6b5f45bc779ad55b7bdddcb964dc5bcaa7bc55
MD5 05ecb178ff372c2e2982c657cd522594
BLAKE2b-256 38ade42811661f8444a1eba315e7d2f078cf0817fb9a56ff7df4b2d57459890c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 988.3 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.15.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6258e0457b0d8e9f39777d10416ccd40e8a356b56e22d55632ddc2d58404a29b
MD5 63e52cc16619141b4180d40f8a76f6fb
BLAKE2b-256 da9065a82124e6175cfabcc575c3679b4be6922836494310ecc0af4303ce5048

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a954ed5fc7f73f841eff935962a54792c970e6962af6f6d66a980602c0e2bd3
MD5 fccd3bc7c544dc4bde442befe10957c2
BLAKE2b-256 013add6005606eaecffb45da4479414dcadbd5f266a875b23998af8818c71586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 23fdc530db7870b394446c06330a5d94021fa2438e5ec690f1b17bcefb229e38
MD5 906e1ab00b37500827a9d4dff6204875
BLAKE2b-256 0a5432bb5431538af9ccb53c6c04c8c6b811bcdc0aeccc9dcf9d30f9ff24bf94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b004ce339702ea9908c15622300296a9e1e256b8b5d39dfdea5826196bb8ecb4
MD5 fa321a342fd57903afd7c2ed04c5ee88
BLAKE2b-256 294f1066ffe3b5a8a656134f0641aadaca4f60e682c850256b68acca863aa064

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 988.9 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.15.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 99eabf7ccab890d20dbcd03251700cc53fad0e62de51a8e3d55ac5004ae5a085
MD5 4c58d422337704355c00664e4ab7dd55
BLAKE2b-256 094f5101b5b9c6a34cdc7d5be5b2b4f355ee43b7dabad5a48fcc088224fe2891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c204714e0ee906a8508df2066e8433ac12765d51f5dde5a15fd1e41a2a7db70
MD5 2700d639bca6f780156fafbfb943439f
BLAKE2b-256 8e77d44a0217625a7d909eba71081d97d681c3bca98e41986f7a2c7e6da258ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5babe342fd6091cf67115416f53f881470e01458d772a579c6fef987bf16efb9
MD5 ed578d95335cebabd2441523298645ca
BLAKE2b-256 90836495c2b4238c2fc3bd15c5fb2cf24d310e96516c35dbe187c02fa149e12c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43ece98e237171e38b687156270a73a33a3bf1a52819f91b2454cedd17915a67
MD5 69a5fe1929ccec48b2318282a6f7a532
BLAKE2b-256 449480bbfc6abca4e0fe3f6b25c161285914e5356ff0b49011c8f0cf2884dbbf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 986.8 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.15.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4ad92455d0d9d07a64bcd7e12e10e811e635c9f472e2d0bcee0a259c8f187b0
MD5 86e01229640048012ab2928d33055e50
BLAKE2b-256 c0f1ae4f1c118da9ad155dcafda18109abb79bafb3c440cd739d900414cfa337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5b8d451475b957f93b89005f64c2eae32b2ae104bc7eb1cb455be3012bdcfae
MD5 bc61493896d0817ed2a7200063a1cc9e
BLAKE2b-256 aa3110ca835e93847320df385f8af190d5220cac2da94e8f6f91b2dc366b5683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a6f8d5a698bd225882bd1416664ce532800ee4fe6f6c8e33db8f6fecaede3f8a
MD5 62f72bc58ae2c876cb5d4e4a4f591ca9
BLAKE2b-256 8e07217eea1994cac96426bd80f1796d35591a71b18d4a1e7d6ca292ddfdb1b1

See more details on using hashes here.

Provenance

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