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.14.0.tar.gz (662.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.14.0-cp314-cp314-win_amd64.whl (883.3 kB view details)

Uploaded CPython 3.14Windows x86-64

infomap-2.14.0-cp314-cp314-win32.whl (750.6 kB view details)

Uploaded CPython 3.14Windows x86

infomap-2.14.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.4 MB view details)

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

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

Uploaded CPython 3.14macOS 15.0+ ARM64

infomap-2.14.0-cp313-cp313-win_amd64.whl (861.5 kB view details)

Uploaded CPython 3.13Windows x86-64

infomap-2.14.0-cp313-cp313-win32.whl (736.8 kB view details)

Uploaded CPython 3.13Windows x86

infomap-2.14.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.4 MB view details)

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

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

Uploaded CPython 3.13macOS 15.0+ ARM64

infomap-2.14.0-cp312-cp312-win_amd64.whl (861.8 kB view details)

Uploaded CPython 3.12Windows x86-64

infomap-2.14.0-cp312-cp312-win32.whl (737.0 kB view details)

Uploaded CPython 3.12Windows x86

infomap-2.14.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.4 MB view details)

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

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

Uploaded CPython 3.12macOS 15.0+ ARM64

infomap-2.14.0-cp311-cp311-win_amd64.whl (860.8 kB view details)

Uploaded CPython 3.11Windows x86-64

infomap-2.14.0-cp311-cp311-win32.whl (735.9 kB view details)

Uploaded CPython 3.11Windows x86

infomap-2.14.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.3 MB view details)

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

infomap-2.14.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.14.0.tar.gz.

File metadata

  • Download URL: infomap-2.14.0.tar.gz
  • Upload date:
  • Size: 662.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.14.0.tar.gz
Algorithm Hash digest
SHA256 6b0f6892742c6a7bf0904cb113942e1a8acc25981ebba5d320788ebe60eaf9c9
MD5 b35c55c97693b08dcc1df248894c736a
BLAKE2b-256 59e7d9651868abdcc5685fa153be2f813c2496d4ccd187a713d054ea152c2a8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 883.3 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.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4c51e6c99548eb03100c6fbb909bcff1c68c4eb46a7374d68e5baf261d0995aa
MD5 6d0d356954e5804c57e60dd676b97d9b
BLAKE2b-256 bd74044a2761c110cd0f4ad87f561aa9a1fb246f03780164db3289a714791c1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 750.6 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.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 09f3f35dc21430cc325d05df9d09adf68968890d79db9bd753e721dbf70c0c82
MD5 de6b223beae777da1fd9c196a773a910
BLAKE2b-256 9c39c5f7e5cced96252443bd8c1f3fe08345a0a6ee9cef8f03c1724a110fdf5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fc23bebf47c5ebd0b978c0641c9992c12da3f47575d891ba093441c1caeb800
MD5 a40e5769db4229fa5a474f63090ecd44
BLAKE2b-256 54699144b31c5c0dac19e9edb145e5e5f9c345391859c67f0bf6bd6a86e4199e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b62198523a07c32e1cd5dc7b77f6489476a5b0adc1e78382feb6f477aad2b9c5
MD5 0713ce8e5c58f5e319d8538030b3743a
BLAKE2b-256 9da7c5bb73da10148e4ffeee69fead07d071d7f2ee434395fa5d59e60cdb172a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 861.5 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.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f94983d997c7be0ee17121bab8ee52df209534f08b72b4bac6a82075a98bf70b
MD5 13fcf7e894d6a058d46ff80205b2b161
BLAKE2b-256 09a521d5e25b9edf946ed20af964a8eff675e26309d07b71b933b8313eae4e24

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 736.8 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.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 aea193bb91ad5d9e0611135742de01be27bdda73031f67b69b8966a65102ea05
MD5 8734d5ab60890591f224721da8c6b413
BLAKE2b-256 70b967cdcd8ee472eb8169744249a91bb51b3c413bb6f349ced22ca25f2c4ba5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 330ce39c2c0e8a82c02c8a555d73710e78be5eb81aaa6db4754530a849bff65e
MD5 55a2ff1a608e828bbf2fcec000ba432a
BLAKE2b-256 a9fb758bf766def158af293f27f82f99a25a41d4ed3cd16b1a0439ed5a6f451a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fe590d18aa82488d91808c26bccae75df7f5b2c678da463d46cf833582211c22
MD5 38c14216502b23d4925259140870ab4e
BLAKE2b-256 015694e88eba83e07a77bb537c401d612e8e8f1e304a3204d3e3e8eb0c6ba8f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 861.8 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.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c8394472f26f32904f6ab940bcf76474975e7ad9e2eab2766c0d56e8833825c
MD5 a7cc7e7733e8e2d6f0231a38a1269d1d
BLAKE2b-256 741b48b759fdf0c9ee88d95aa636bf2ddaafcdf3220ccf9b72c54ad595b876fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 737.0 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.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 26b05f8f048c2dbb232e7b6ee13490d992554e9af840948dc2c8f2b217e267fd
MD5 3a8feb3f3e668750329f019ad4b4e7a4
BLAKE2b-256 429941fa79ef392f3ae352cbff2156fc9f33bcd69bdf229a7dc54c152aae5bec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 180d374e21b9f9ec9dbecbc9663ef7586d0f190ce4ca0c30ef9357fff2037679
MD5 d4a01214a7726588b468b451a2afe83f
BLAKE2b-256 13b976c87910d231ff02a04a86245b459171b05cd12be8dfc8f76bcae4eb944e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 81d0f8de90990e6601e5140bab54219086bfdfb93c7c579efc2d010f29699e9a
MD5 a716ecff7f3690008677d80e0ae76284
BLAKE2b-256 dffbf25bd72bee6f6de1a9efd66512d8db646367e02755f37871a2ec118098d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 860.8 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.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59fec00f82b311ea2daf1b6d40d78d8b7c32047a136baa98748a603e3554d16d
MD5 6ca1ddb861ad079dab323148c578abe3
BLAKE2b-256 a31d7671e4a8b7a8ed6d038cdba699927f0a05dfd863614eb3715647449d6035

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.14.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 735.9 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.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4a66f2515c1901d4e687304cbaffbc8b5c7285cadac1516d8611a880e94e517f
MD5 93afad943612feb7343ed4673c9607b8
BLAKE2b-256 113868256decd0d0be0d79bf6fb2afed25a14b1b023daa5012d32750964d94e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e57d2a57ec59f9cfec3df8559e35e200fb1809ca4fe16375228b44c35b0f96c0
MD5 38b53a2882f91155b83c727b4358d720
BLAKE2b-256 e0f8d26e1a22e67e4cfda4cc25a779dd81c15d81d46e5daa16f83024d2a4e1d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.14.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 08cee8f654b038bf5bee744dccb10aeb5b2ee2ca16969e20e6fa4538675dcb0a
MD5 c0c68ef54bce1aa39ea228b43ee45207
BLAKE2b-256 83fc00dec7db293201317c795fd56539c1c7facaf24490d32922906f5aed2c48

See more details on using hashes here.

Provenance

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