Skip to main content

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.

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.1.tar.gz (756.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.15.1-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

infomap-2.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.9 MB view details)

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

infomap-2.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

infomap-2.15.1-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

infomap-2.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.9 MB view details)

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

infomap-2.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

infomap-2.15.1-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

infomap-2.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.9 MB view details)

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

infomap-2.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

infomap-2.15.1-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

infomap-2.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (20.8 MB view details)

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

infomap-2.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

infomap-2.15.1-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.1.tar.gz.

File metadata

  • Download URL: infomap-2.15.1.tar.gz
  • Upload date:
  • Size: 756.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1.tar.gz
Algorithm Hash digest
SHA256 fc5e702130609a08bc903707f0fca3b8f585ba4b16ef730ee93c7bb9e2d80c66
MD5 4cf3a92004e880b653c6b0cd0dc80fb4
BLAKE2b-256 7f010b2e524e9d50b3eb3fa59bbc0ce28397401a857648557d9c42baa29db19b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ec10d9e297bf51a550f5cc235e0e0e19261912b9599354667c12efbb6db72d1e
MD5 ab0e51481aab5003c3a38be3d8e16826
BLAKE2b-256 72ace323df9c65fbfaf988f19725d2cf3cd784f7567314273bffad308dd8b940

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3b45fb6d4f57bfe37a234280944a28712a81bab48b5dcadfee9170d5824d6e54
MD5 321c13c9637a883baedb513fa57b1674
BLAKE2b-256 9adffdb0e2c421b65d9fd3d41553e5bcbbc289b1a78a3e105496eeaa48254903

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9dee7a8c789bfb8f1dd7ca704b5850d381fb2be3e207df0910d4afed0f089ee
MD5 99c1376b04ddd41bd57feb840af8633c
BLAKE2b-256 2fefa5631b57c930b6d41fe9bd0c40985a8a14c5fbab804cdcc51ce8229cac78

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-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.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 679c7bc208220ca2a651dceaf536fe632231e6776639312faeee7f791b5e3e70
MD5 7c4331743bc5f4702d9704d90cf4b871
BLAKE2b-256 34a4790a87cd790253ab35b11e560e4d938e214acf8226e76a7a58843c444f00

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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.1-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 efebbcae09aec4b1dba5b51fbefd0f05e98c5428b2cddf06e6cdcd4aa0129b11
MD5 fb77b215b9cf0e33f14d0589501b2347
BLAKE2b-256 600d69d339abbc25c17a5e55203385f7ddb82ce5321b96223509925a9c7131ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fe23e0ea87b27e45f69467e370676287321ff07ace1b4d90ce2052357c78cb67
MD5 5bf64d67d21c8eec4dc07dcaeadf5e76
BLAKE2b-256 5d033970c27d914411c82b36d6a477aaba4f0d97082325dd4a4e4e98dcb6da68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2d0b4dc6999d7d5677ad87ebb8567d387df47012dc6236cfd6ceeaf91ffc5ac6
MD5 33580101e3339e6e1105dc33584746c4
BLAKE2b-256 3a87037b7b31b68191a89b7e0d1a8c2462ff5c4e17b7ed14683044861480de1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb9a87a787b35f20446fab6168d606b00d4801dc212de6c0365628ebde09b24f
MD5 cf8d9048de9e2e343731c866c936cbab
BLAKE2b-256 4259b04dd8ac91faa4f955201a9333e7b611510f052b5783259f92ecf685abc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-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.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da7a37752efb0986db8a701f75f8bfaa85fbd579d9fdacd818a7e36ef14cc977
MD5 d9fb241b797e678654c8714b6e1fdf8f
BLAKE2b-256 f1cd4222503bf7704aaa374dc57498248158c0de60562b9e5214412d6484f1ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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.1-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c394b982bb2dec79071cc7771fcfbc6df0c0948f54255e892ee8c15a935891be
MD5 ac2db70ab7cfb1de7a218e311c0e1882
BLAKE2b-256 bdc43887ffa996d56050efb0a93cb8c633f68f4fb28285fe079f5ba9e772e2cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 527218338276649b573e2b4658dc210bb22066009915adee26e460502292d4f0
MD5 ce4ebc49d117b7d7f24355cbac34d4c8
BLAKE2b-256 0e2fe343b47c6e328471eb4aece98eefe9ed1d99aa540e23f7fac03d9a58e779

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4adeb1ffbbf71a23c939d66fde1167396d31762910ba3e1359ec838de77983a3
MD5 f1544736245dc964e8bdb144b53adabb
BLAKE2b-256 3efe0d1a9953a7d3f8fc6fc84006eeab4b6a5f85fa6885252520bd356879d210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b730414edd66168ea9041d64a03997e0b84ee397b8278967a2851fccf3589a31
MD5 d379a717642c97c0c435724cad6ca9cc
BLAKE2b-256 1848b8ba078212686304aedc637a5b597efbcd69f668bba6c067c4f40453128c

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-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.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad2c8b848225a1e86ec94f96f7c59b0246bb695f62c1c9a1e7dd2fe09242b419
MD5 f1aded7cfbd950242dd0b0a217a0b1b8
BLAKE2b-256 b7ddac5bcf6c1897ba00a9157a51b6722909956ff8cf70f5d6017c392f250c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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.1-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 55111d9a7fa338d32b0d03584d9d88808a4f5a4faaecdb25ffa3d4785db37bc9
MD5 f1f9f7afd90f1644b74a0d8f28344d88
BLAKE2b-256 4cfaa7681bc070273d189024207ab95fef1d4446aa06bedac79c437151450a2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ed0496a4eaf9008a0451497882b232524a62c5ba657d7f27dc95d4e4bb18a2c
MD5 4d48743a192888dc76de7deab197dce8
BLAKE2b-256 0423ce997fdb494cff4561e8539d41a63099d87380f290183787ed1cc5b5c49c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: infomap-2.15.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for infomap-2.15.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 56d1bf3998c13c5583a104016ceae60b1fc5870ab46492b2a1d95a187c13e124
MD5 3ef71be5b429414e6be03540929cd1c7
BLAKE2b-256 3d77bbde329fc0b55ee4d4f9a43d6d3cb04809e6db2b25595831a869ff5cf9e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for infomap-2.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edfb8c05a930d402ac35c55c6ae26663549f6dba8a4bf7ea46fb4c0151dc2493
MD5 9f93cb6a19c90d23869d6f24e62040b6
BLAKE2b-256 dcd1e2ed3df05c03ce85a7c87b8fade8a23148cc56de07c378f7696b742f2702

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-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.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 746ae618a63745d5af321dd29861cef950f9b67b0916ad3ab5aecac443e8fb9b
MD5 ead034e652aa9d0168b58b3d0a7c863f
BLAKE2b-256 e415c9a2e55341a6bf817c8cd05f781fb9344e5510ae3df884ca580effe5c378

See more details on using hashes here.

Provenance

The following attestation bundles were made for infomap-2.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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.1-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for infomap-2.15.1-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 90237dd16cbe679c8b05589c7552a04ff2c4b512f83772c0f7d71e72da7f25ab
MD5 984aadcba24cada58a2975906ed35852
BLAKE2b-256 3b50062f085aa07a0a57cb62c8c54eb62914ede728c5608ae4fd425455f7e546

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page