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()
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 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 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.13.0.tar.gz (630.9 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.13.0-cp314-cp314-win_amd64.whl (842.7 kB view details)

Uploaded CPython 3.14Windows x86-64

infomap-2.13.0-cp314-cp314-win32.whl (713.7 kB view details)

Uploaded CPython 3.14Windows x86

infomap-2.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.2 MB view details)

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

infomap-2.13.0-cp314-cp314-macosx_15_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

infomap-2.13.0-cp313-cp313-win_amd64.whl (820.9 kB view details)

Uploaded CPython 3.13Windows x86-64

infomap-2.13.0-cp313-cp313-win32.whl (700.1 kB view details)

Uploaded CPython 3.13Windows x86

infomap-2.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.2 MB view details)

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

infomap-2.13.0-cp313-cp313-macosx_15_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

infomap-2.13.0-cp312-cp312-win_amd64.whl (821.7 kB view details)

Uploaded CPython 3.12Windows x86-64

infomap-2.13.0-cp312-cp312-win32.whl (700.2 kB view details)

Uploaded CPython 3.12Windows x86

infomap-2.13.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.2 MB view details)

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

infomap-2.13.0-cp312-cp312-macosx_15_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

infomap-2.13.0-cp311-cp311-win_amd64.whl (819.9 kB view details)

Uploaded CPython 3.11Windows x86-64

infomap-2.13.0-cp311-cp311-win32.whl (699.0 kB view details)

Uploaded CPython 3.11Windows x86

infomap-2.13.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.2 MB view details)

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

infomap-2.13.0-cp311-cp311-macosx_15_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for infomap-2.13.0.tar.gz
Algorithm Hash digest
SHA256 e15d2d5541208018cb22ed413c938009de87683537e8a96e8f7f7caba17feb9b
MD5 0fffd18f3994ce4d322654553f9dcc72
BLAKE2b-256 1011358f63c4f4954b698f965a034e7277546a45c28c9c993e5aeec7d0e69257

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 842.7 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.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ac6079be02323851a57457259f8ae6411f939935096e0166254113a25a839f8b
MD5 feee3b287db21c15b7e9f949c0dd58ea
BLAKE2b-256 67d26bc6a2f5fde521800e20ae3c99d674758f6bd92f1a585a21daf2da64368f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 713.7 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.13.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 386477239aad4ef43fd68e330cd3ba7c77be895f103f89c5a95ff34741e48b00
MD5 48e501d7aecc3fe65f3a7be92dbacdd0
BLAKE2b-256 d891ac4d38953355a6acf29ddda7f6cc599ca87412de504c401b62afede099d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53d2f86edbdd628ae3d7d51bcfe67d1081e23e3fd4bd46beb05b71fab268248c
MD5 1043329619c2b39c653f26e730e15a70
BLAKE2b-256 8745c8853290633680425b048093178acf355a66e390f5bad2e1d90276a398bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2ebf21077cd86c1603aa9c32dc5d143a380f902e789726907b77004dbdfd11b0
MD5 874eb4049765f8ff89c219fbb9120d7d
BLAKE2b-256 25cd65ec2603b826f07d6a9c29a710c604cc282194230f810106aaa2fac8d091

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 820.9 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.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bf064e563b96f02ea7a5cf092844d48e0a5162428cb394237cbfb2a7514c88e1
MD5 f6ccdfdfaddcae6e6aa7d3c41abfa005
BLAKE2b-256 344355058d4a1292ee7bdaa9ae0abf5969c69453f73a5148b2ceb11425a457f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 700.1 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.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4cb2c5db285ec9cdccc44feaec5a56d0731e3a226909ba2bfe9745d5812bd034
MD5 0b151ace40016727e9eb95c4050054c0
BLAKE2b-256 81899aa31bb9e38369c70c2f50624c2fb81039e0366fa05bdec1bf7543272c22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f2b1b0441c10e7541c95d6088f1b2afca3eb918121203dcb4a8b3aa194f05c3
MD5 09a6088387b336dfefeba8a6769871da
BLAKE2b-256 2485fa4b4b24fa0dc553a7bee8140566f727021b9d4cd120e59fa1aa60b420dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 922e9e388a043756e4e00e18de7e11d4d2aad08eeaa36481967ac86e9870dbe2
MD5 1bbca4612aa0d65db9d27ca6b38917ab
BLAKE2b-256 b0e24f0f2e83e9d31485cdae8d92c69ecf45040311b519145a542453bde1e32d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 821.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.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b14265b3dba41561f06233d97d2a44b96c450f2580839708c2e49325bc69e069
MD5 8e1f73b42cad027f851a912951e9e2c9
BLAKE2b-256 e852dcee0bd532426d77d55628abe5d8a1ba16975bd0dfd4cc335ae6c9073613

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 700.2 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.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 08f789d75c5214331c742428b8e1f1959e26ff0e511ab53f6c3d6e8ad5731f48
MD5 84860c3d147ba01f1b7ecab4df4b5d5b
BLAKE2b-256 55ef33fc121ef50973119327d41b1b66bd6499e0585a8bf87f38de90b29c1c85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc5069b6270b9d6ca66bcc5a819849ee6bd68b6b0932b669c31d574d9d274e5b
MD5 de58a9fde894f546dcd756dc3c20a657
BLAKE2b-256 fffe4ad9932e378a6ad9b849eccafdf6a4732ee279d425117c18c7e1f031ab9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5cf827aab08e9767f704e74f3c14ddcb2841af75ac454455d3b491f30c00003f
MD5 04f74c3b23b9ebc75db1bcedb7f3501b
BLAKE2b-256 b843bb641b55f49e3c3a24ecac4e20cd89edfc9285351cffd5394c1336326748

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 819.9 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.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d4efd2297c41208c81ca18fd66b0c3d10db7bb3ad8d927447346313acfb5f236
MD5 3326772b1436e13add42d853b97e0775
BLAKE2b-256 0e652c80079cc7693c4fa23e3db2a1b0ba58f74c7aac183b75361f4cf2435045

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.13.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 699.0 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.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7c4770aa4611ae77c520e0630cb2e585276472d347e621dc74029dd09323b8ac
MD5 cdd0365135504db2bd8a2f44a1327f3c
BLAKE2b-256 b112f6f2b53216af2c9f5c002747cc549be8c942a776c84a5f929ae414c62bca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b4ed1c8a89c8da713de8b055d0832be9500fb776ec4d72249da32b4ef8ec2bc
MD5 386d33369cd26b579b16c9211c4bf848
BLAKE2b-256 1b3f32ce1c98023e0c229b5dc3c51c7b523c6f6b8e1e501055019e95eba8e320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.13.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9e2702315401288fb29c83fc461699f9b6d83ebf1d26a5fb05922ae38b1e515a
MD5 c6b01570df655bc77de801a8ce77bbc5
BLAKE2b-256 def0c5f236c749f971a5cffec8bd320b36e7c1bf13ea0eba08cc0b6dba5f2b17

See more details on using hashes here.

Provenance

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