Skip to main content

Python bindings for the Rust version of the WebGraph framework

Project description

webgraph

Building from source

Pre-built wheels are compiled for a generic x86-64 target. If you need native optimizations (e.g., BMI2 for faster succinct data structures), you can build 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.

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

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 (parallel computation)
top = g.top_k_out(10)

# 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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

webgraph-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

webgraph-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

webgraph-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

webgraph-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

webgraph-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

webgraph-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0c84d3a6faee85fb0cc1ea11cf0bd3fb9972710127a6a75f2fe4f36a7d71a5b
MD5 c70346ecd4532608dc9b1c916ea9de9e
BLAKE2b-256 2b689ddc6c1fcac89a1a6dea405906d3c27f77550795532f2c843a6e00eb8f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0fa1b67834f8d5b906489cb620f99f55350f5c078cece216edae169dfd298e4
MD5 8d13164dde8d7a63d6d2b0ced85f13da
BLAKE2b-256 b4b9e7e2550cf3d5e94df394cb61a55311b64f31cbcac42f7fc783f2a0b3851b

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 694cab9081ec1cfc473e55065d188c8184911aba8ac94fbac458f6da4efe5806
MD5 ddb848197932e07dd67afd83004c18cb
BLAKE2b-256 f0b65890a3d193c9991f1c0ead82555b588836f01e0df44c1c27154dbfd5f2d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 69fa0eaac380ed5b7f89bc74044a80ff899b9d917960edaec2d70b9b94bfc851
MD5 7c1a2677758c6ad8ef1aebb8b8f78441
BLAKE2b-256 a3c6808cd79eb3582d1b99dadb05a8dfbecd7c1286d4796e39290e570efc560f

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc21aeb278582d4ab09256d326fae264e16026845e5775277cbcc5ec683f166f
MD5 08428d71259f96aa050bb20cd99998b8
BLAKE2b-256 55c300ce106abd6091b60c3b1ef15ff826738388549dd41771692d85df18c64e

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6eb9d2eea1568d10a47690bebbdd2edfcbef260d04d94e97aaeb50afff110504
MD5 bd6e43005f1786e0bc881dafc90dc85e
BLAKE2b-256 58fcd092409996386cd7e20f726cc84992be422d42c4c41a537ca1fdaaf5c10e

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82b714941133217593accd9a6df723ecc45e2d0fba1e2858e53e8942fddbd87c
MD5 f808f718a0bada4492eaa3d309b314df
BLAKE2b-256 84757e97312faab721bf26b2ffe11bf17b33a525616b5259f8b44bf276a21bee

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4481af1b989358e5adfd6e032c6152eb49d964a7bf375a64d3ba084f68ca976
MD5 cba993954215aaed4017e11fa8a09f32
BLAKE2b-256 1e07e0083b1e0cb697049aa57beb11099fad2ebc89eb4becd919bbcedbfa4d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28e8e8e1232bda069ad886f7d3ab417efadd0ca665cb55d00b9a5a534c0c661c
MD5 a011d850e6ad34f75a0e4fd0f4496238
BLAKE2b-256 5687ff77b6685ee1586e00a112b306fa2c59971a335d9177613d362378efe2f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 467e735cd053f9d3aaa79b6f938f405a1e5288b0c6039c6bf521fedd913b3d93
MD5 5f504812698673f281f1f40a2e7bb563
BLAKE2b-256 d9fad970c232936b95b3b090a37a30ecaadb52b995f065ea4e7dea39d27b8600

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bebca087c48d4edbac26c2d0da64c76b58de744ff9b8233e7c6584ab8cd4f2a6
MD5 f0dccfaf8f32a6038bcea961b1a17c8c
BLAKE2b-256 c4a2157d413e82b37aa6bd30f8ce6fa24f598056a6ba094aaebc9511bc58950c

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8f9cd9a4d1f0e3ef21fc8774fae1d96ebae5b8e23d1589f787e8ab8556bb280
MD5 4427e223e2d83821df88860e3834eb0e
BLAKE2b-256 b52d88b53d52aee0efd36c9f4ee0167fe8e4969aca556c05243caaf26ce4ed54

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51102e58275e60b156b13d1b7cf568122b8c95392cca6e59e538d2c47c185744
MD5 a0bc23e65a230debb8494d931c5a4edd
BLAKE2b-256 0a6c8bc93be50ccd164410659bf4898c6b6910c30d5b418997240a9fe98b831e

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8219ee14163805198da78a18c25fee4b92979192be7c43ce66de2b82d2ede8eb
MD5 6cb6a93b37cc5e7c6686c08e683827e6
BLAKE2b-256 b27ba3af9ac9169bbdfd82c4e1df61bd733f682e1330b4ec523006a8601f8fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f3d8962044edc462a8c3f5347a2d37c53708aee25efa7be7cad6cf710193c211
MD5 840533e7b5c51142ecaa21cb199089f9
BLAKE2b-256 c15c62eb95200193a58c1dc52d57add4d7377b4497908a3e9eddb5218d7f9b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efac1a4b76ab8927ed241b89f8cbd16ab8160207fcd1031dedc746bf27928ce3
MD5 e7b33e4d73df9666354059a3425f840c
BLAKE2b-256 64985fd4f3dde6297a7fe43e15bd8b2f29c2959f20267a5fe1f2d59d19df6752

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e42bfed3c3e33dc11a072625dd0e3f795a65cee92310535ada41d02ab45a9055
MD5 bb6de66b3a84b4a08ca47063e139da08
BLAKE2b-256 2a8691fe9aec138e5d0873f8914d178e6263729c1140732e58ef5b5244b1354d

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c83d0bc75cce592f641d13a41b56f9729bccec32cdc163e0f48b051f6a298725
MD5 da870a41b1dbbffccaf647c6cd133cac
BLAKE2b-256 06fb698cdad9b7c1307a1cc11a0ab5ff0539572f2d105a042bada8f53ff2c115

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bc00795f1faebbe67cde6314fc2891bf49a4941748cc6e9b12ad68888379dcac
MD5 38d56631ca01a7b01fe7a5521b71798b
BLAKE2b-256 ea8686237bca73207602bf3f11f6c93553837df169045e92cb2bb8719ada80e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fe64b9fa4861d4f5541fc061a8a66fb4867a4d29b6a3119dba6b75ea3bca6b8d
MD5 f75a929190272cefafa84b76d38a000b
BLAKE2b-256 361170093fea268128cdf36e963bf1b31a6f162512ee53435cae2d4a2230a6d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c000db5a94e5d228f128b8cb0e04b676e1ae646b95dcf08d1f8c21d9b2a8868a
MD5 543c269d36ab26a26bd15e6d6b77eeba
BLAKE2b-256 950d07dfe4a7562ac313c83a0b9f2010e9966817eb8c43635a5b9bb4c462a9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3886d0d93b33770c30f761c6f19808a9985a636ce3884828c00111cf281347f
MD5 315e626968ffac5c1c87a48bb3dbb57e
BLAKE2b-256 c329e6ca7b0551f1172b8a879873ffb0cc2b21252f1c47cf366eb4143c056163

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6fb51798c842e9813560b09c5a5eeb7db44f161424248544ba6a784af70bc55
MD5 03c46d65d37d98bd69973c4bb2fc649c
BLAKE2b-256 c55edaf5ac7710edc32d77b3e0256c729edd95b062e3e69c636ee9059e85074e

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 459c607e9ed21cbf11a789acfb4c52475fb0343315973828d65844ca4f25592a
MD5 25a7784089c411f9f5215a805efd982e
BLAKE2b-256 53de38f8d61cd6e2d832aaecb52c142360029ba4d33234e4d8b5c48e9e4fae7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: webgraph-0.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 803620f66ee2f75f0342db5eff05f6cc666b8ff0c73263d3ddbbfc4ba949908e
MD5 692aeb25035dc540fae0cab71fb33230
BLAKE2b-256 8796f8bb7fcff90b0d43faf922f3832e0a3a01a6aeb437e91d05086abb330374

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b086597ec763c6b37599d023164ab11cfb3e61ba7f182bd7d240355a7ff97c7
MD5 30f243b788e27b1f7752a5126d829f57
BLAKE2b-256 e626d0d8b410ded6712ce9fbc30ec1727a18729cfc72aec701e602585e9d1912

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 383f1faddc0453a2f5146bf64e3f7264b3c1ec98fb33290e16e8184c911fb4c8
MD5 c8e8f9b1e5175f32c0abaa369880ad97
BLAKE2b-256 e83e8694bb8e7fb303d89791248710093d46c0278676b150a2f2ea3c3f9d2d67

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8681dfca4e9c193dee26f12f4b8c5a371fbfacea71fd940df2c95d9d8767acb8
MD5 e55c60c656d5e623b140fdb633899302
BLAKE2b-256 e7233f2e29a56b9713ce47409f223c1a6d3a137cf41935dc7bdd3adafff8ddeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d952fa3e5419e51385bab0b0870ca86c9c60ef078a25cd6217eac366e715c280
MD5 f642ff1e9896c19b4cd99e8ea703ecf8
BLAKE2b-256 06006f6bba1f95ebea11d25f33598ef6a23a69fa85ba9eb8a86b9ba41baa2b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.2-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