Skip to main content

Python bindings for the Rust version of the WebGraph framework

Project description

webgraph

Python bindings for the Rust version of the WebGraph framework, built with PyO3.

WebGraph is a framework for graph compression that allows very large graphs (billions of nodes and arcs) to be stored in a compact representation while providing fast random access to successors.

Installation

pip install webgraph

Building from source

Pre-built wheels are compiled for a generic target. You should however enable native optimizations (e.g., BMI2 for faster succinct data structures) by building the wheel from source:

pip install maturin
git clone https://github.com/vigna/webgraph-py.git
cd webgraph-py/webgraph
maturin build --release -o dist
pip install dist/*.whl

The repository's .cargo/config.toml sets target-cpu=native, so the resulting wheel will be optimized for your CPU.

Quick start

import webgraph

# Load a compressed graph
g = webgraph.BvGraph("/PATH/TO/BASENAME")

print(f"Nodes: {g.num_nodes()}, Arcs: {g.num_arcs()}")

# Iterate over successors
for s in g.successors(42):
    print(s)

# Degree computation (returns a numpy array)
degrees = g.outdegrees()

# Top-k nodes by degree (returns a (k, 2) ndarray: column 0 = node, column 1 = degree)
top = g.top_k_out(10)
print(top[:, 0])  # node IDs

# Breadth-first search
for root, parent, node, distance in g.bfs_from_node(0):
    print(f"node={node} distance={distance}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

webgraph-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

webgraph-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

webgraph-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

webgraph-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

webgraph-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

webgraph-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

webgraph-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

webgraph-0.1.3-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

webgraph-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

webgraph-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

webgraph-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

webgraph-0.1.3-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

webgraph-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

webgraph-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

webgraph-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

webgraph-0.1.3-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

webgraph-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

webgraph-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

webgraph-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

webgraph-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7490ba472d91d0f0d647cc64467c99e0ae26cd978dfa747c0cf7b5bff7e9419b
MD5 2f40775a1448ba5a9c7b8d3ccc63e212
BLAKE2b-256 06d8a4b065e394f062cfbd9938bba6e5041d4816d41822c5845f169898232435

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6cdf16b9ba05e3d640ea0297a5a11956155049777f62253525350444a59b2ad1
MD5 2391046a2fa54c79319a122ab6ae7331
BLAKE2b-256 c4cf410802d474def1458ae85f69ba630ceae7df30ff6540a190adec7487fc43

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c3d24019d7e9bee41b21aa40f02f21269a3cb748248593d335799822afdf9e3
MD5 16d0f9d7001ab4d3645fb0141449ec71
BLAKE2b-256 4f45a795ea136e54197c8917785ed53f804aa9566d9e2474fdf6d87bd72a3c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.3-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.7

File hashes

Hashes for webgraph-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9065a365de70760aa2a7333722680cbaadc6e5cc997762dba112955f5364543a
MD5 6ef02a1edd0f5a6d5d76a87f7eac1219
BLAKE2b-256 020b1e7c95ca94405ed5307c8cbe4a1c73e204ef0c41fb3df9a65460bc28eea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0c5f4a97e9cc5bf32c5653162b46fbfbe3066a6c4aeefb563038fe6be7bcbff
MD5 04de7d8d8649d033ded1e2407a8a1392
BLAKE2b-256 df623de36b8c7529ec25ee7e971afceca50be03b2379b29420dc46c20de40790

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86f6fb70ea3ace51d466f9a950b9b8e5a9c3db6290a2dbe380a66523d7499b4c
MD5 a1f4c436deba27010674d23be8c0410b
BLAKE2b-256 a0af1666ed8476342f9946a3dc8f43c7071e770a5e235d57f6734380e45f9c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 576f37a2c0b4cd000d8c352f66f271bc403f67299b77af2972c7902223a4b38c
MD5 0e91d77ae441734e4c1d8fb8ebff249b
BLAKE2b-256 f7da783ceedeb4ee37945f576329e8cb9a1571f140b58bf33449d848f0310839

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 038fe5bbe06c5b0cde09c6ce573daf4db5ab31c83e2ab35e79c64b4f404604ac
MD5 e0bbca59efe68091555c4c9801ed2cd2
BLAKE2b-256 287eae30934e02da39e71fdda9fbf88e05280f8463ef1595f67cbe96013eb9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce7cdb3573ca8c5796f3ca54071904bd3f1155e2bf1dca8757a3e3d931f9435f
MD5 57c382ca690838e57e75d5235bd8396c
BLAKE2b-256 0069aca37e6015acad8f470d18e3766ff8c3d942e08a726f7c02015d1d284b4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.3-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.7

File hashes

Hashes for webgraph-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a443e9d1566dc1a928fbae7b4620ab9e5b5f153abf95ed726ce4024921a3ba44
MD5 e6b52d7d89beb87b99f41f6023abf1d2
BLAKE2b-256 7a48d31addaa3a0ab0dcbf5827e309ffeee591cf4406654714d5ae5ac676fdd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7dd22b6dbf45a35d713a4e6094006cb3e206bc6e4eee95ab03e8c116c650ee44
MD5 7467933fc18c3f356c5ec378be384ae7
BLAKE2b-256 832304542dda2ecf9e910442b6b7e1f4d5edb6ca5cdea4dc78348b1b06ba5d3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45324e4005dde6cecb2d4c5b4625e88d6628052175f5f9a6ee18d08169f5b927
MD5 7955220fafd83e4350419de8340b30b8
BLAKE2b-256 c5ffd9ad5920c4b0f0cb44035c071504173cfbd6228d2bec139dc9d51ea433f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15cbb49406beff2a9c0924cefc92fd4a0467f73b39e502589bc9aafcf68df856
MD5 0a5a8a6218e4e60ca63f864de7ed8173
BLAKE2b-256 9c4bb44aa8c7fb366585d96e16ffc3c0b5d926690ad9b307bd33749fe4c6b168

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0d7f9a869f8f1edd5fe0c20e545324346c79d5fd272e30121af357b60a918df
MD5 dab58c05f42ae32931a97586f8892d0c
BLAKE2b-256 181a2f0fb662d53c9a1f2846b24c9fe6a5d473a4327435c8179eefd2aa5254c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.3-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.7

File hashes

Hashes for webgraph-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12ce0a455d3a042c776f7256f5d2e7d084b508bead9d57376792c0fa4e7ef1b8
MD5 36e8f43719fa11dd2bab01ab376ed18b
BLAKE2b-256 b5c6620a946594ec7a7a58a3eb428a2e41cc8b66c7d92362ec52608616f28279

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d5bfff814b1eb03a083ca987620603aa4a5f0df98e27e1005ff9b52ed25be07
MD5 4e8ba919fabfd29bdf92361d052912d0
BLAKE2b-256 f32829efee3aed253d2d07eefde6b5646048cce319dc7d48bb28341e5671f9e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c00c26f531bfa76b3fb7eae2d50179e2c042c8964f8c799d677c241aa2189688
MD5 bf5ae3ffd1eaca4fb12a2408c7a51599
BLAKE2b-256 4eeaf42b8433a79e30b65e09456095bf47a1568b79e758cb05539e8b8469ecc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c702fd25bcb79ab8ac37e916ed8123058b8034b5461d43d7e48fc7f8e4006152
MD5 254e234c0842bf6f4d7f3e7a28435cd1
BLAKE2b-256 36a311a4bae91a826740c3ccbc234f037d7a0b13eeee0a420d8587433ea9857d

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a97620896847d8d0611ed19dfb51d0069c01093596baf6b4170e0fdf4505a91d
MD5 a5a6623c6697692e1ca39285d0114fc4
BLAKE2b-256 9564750cd0d4c4f0e413737dd3c08b5a3ea53c0fa7ba09565f4f80d0c9f2d447

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.3-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.7

File hashes

Hashes for webgraph-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 64ce750adacd9171d0cd27213d23f2bb7db6ef58d5c72438a53ee0576adc9490
MD5 399acf8be3bf2f7d730b33c0460497e6
BLAKE2b-256 d7d19aee5873640d48c1b98569836758daf141a952d18e5a5b881a331d2e4519

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a65c8a8ef9fbc1a0d02e195ba66b1944cc7bbb89be6b8c7991ac5c28305b1a59
MD5 09ad54f165ac4eaf065665897ef7f08b
BLAKE2b-256 0ab51b46bf5844644524fa5d22828a4042a2f778a03a2d5e01b3b0e261ff4507

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f4f29f17690965a8c2c42e28eb09fa3f7b8cf0361ad1c3412b36effb9d9c09f
MD5 0c29c09281bbec43a95ceaee70a75936
BLAKE2b-256 0091b6bd83cea43012b866ae6f75f6a19a94f419da11675a88f83d9efdf68b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79779ab1310030e9e2a6d88c43419fc14eefc3daa2d023d2c97815824fdc2f10
MD5 9e6ede07a55425a35143351f48f098b4
BLAKE2b-256 9854c0c7f884658f4895e3e84cf3f1a7510b59f8329d905c555ffc474cd20d67

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a23e0130999dab27a45d2a679e4962fc10d102f902c483b1f0957a6d67485b99
MD5 b25f2fb2fc195043183ee01b3d3294d5
BLAKE2b-256 cc901228f0fd7ea48c606d46bd01a973e13387cfded784c5793a01121af7576d

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for webgraph-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a8e95571d1c1a9c00ae97800d4a8147e61c3756c7e185783f55469bddf6c35d
MD5 dd75a98a31c5ad0754b2c68cd3086583
BLAKE2b-256 707285e7f7de33e2858bae17efa857d683ecd7b656fa67f61318d597f75a516c

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17afd4344df97454a62f8141d5fcba2bc938d131667ee86f1dce5880ab168b34
MD5 2635a2fcdb8ac36404cea5dd2631581d
BLAKE2b-256 cf6d315634836ef9f11af7a2727dd0e9f4f84563a65030367fb1e2a95fc4e7a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c82dfbb1b016433cc42ac0fc63bd8320b87acab1dd6b4cd81b44197fc84275c3
MD5 59292f8546dd5f6e859e9925f7103558
BLAKE2b-256 2c6e23f88fd059c4f96ca56d2fd66a23a0b1a96ffb32fde50ee90c56671f50e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0768f7df695df834e8f80125b5eeebc5c8e9ca1c717323d1dfebf133dd83d996
MD5 3f133498083e9de5c498b2509586b33f
BLAKE2b-256 a3f1aa08bda928f2cc909d73b6482f247e6eb4bedd43417d1045d1beb174bb29

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: workflow.yml on vigna/webgraph-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file webgraph-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2701f09dfa14403a4ad969d579b5168b3ebe1e940921effce84638a40af92304
MD5 231aa7b66a00bbcddf6b6bc8c01ea68c
BLAKE2b-256 fdc7391303cb93d9aa7d9cb5acad62b6608217469577d6b2a4a0023955511e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: workflow.yml on vigna/webgraph-py

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