Skip to main content

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}")

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

webgraph-0.1.4-cp315-cp315t-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

webgraph-0.1.4-cp315-cp315-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

webgraph-0.1.4-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.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecdb494af090c05a35b414a1db1cad345fcc8b80f1587b94ac01b7caf2c821c3
MD5 e9bae720dd5e9f0542ab18e5ef83ef2f
BLAKE2b-256 e590528fdfbc404427ff6206a7700103ec0d94dc001f0acdd6cd0acbdee2b2fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0865d2248fc63aae628915de17b63e8aca7f0db39c45992ccb51f925e77a8fb
MD5 b161b063d5b77192676f52652a820514
BLAKE2b-256 79d6199902359dca498bf0280d7d190d6149b5b8c3150dd96e2e333041f747c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.4-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.4-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.4-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd72434dda3b44bc30ae3a73ea0069ce6299bb9f1af17dd629286ea83a0d3148
MD5 a23602b819a1abd585876abb0616c293
BLAKE2b-256 c4caea72e3dc069df7b39fd448bfa01e9e876706b44fa4cc1949872d34dbecc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.4-cp315-cp315t-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.4-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.4-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2347a6d06135a54d99c8cc1d9e7fb83cf9f7c573fbbfcfdcd990c86405712194
MD5 97d2d743404b6ecd69ef7929b1027d3c
BLAKE2b-256 149beaba45e9858d0f124e7b4615a99ad64574257c684df2d9c25ce0e7d8ab5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for webgraph-0.1.4-cp315-cp315-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.4-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for webgraph-0.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44e032b4651fe0d4ad48c78847f575630f4be6379c4b308d59027ec1b90041c0
MD5 056bafd5ec7572f9fcca121f362a3c2c
BLAKE2b-256 afe9e93248904e5bd4d91cc42b56b173c3104490cf11f144077355c3d5ebc89d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15b8d96af8addf06753e0ac768db6ffb99a4fce24b5c1d440802b85a7ab67415
MD5 c7a7493a1a2178005d2ee780700855ba
BLAKE2b-256 ccebdd6808df274d4147f54d54ad93692722e2583492147f8facd9b264edb08f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for webgraph-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bdefc06aec4f0e10132b3a78968ca8b8c49a45e1887444a61e4588a177b7cc56
MD5 e4654f0072ff3b41c1b7357baf3a7fb9
BLAKE2b-256 cc5134300888bb1294045cba83d5366ff20b21be3a5ff1500515a13eb28d6d4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8f93a5f185823d4fe65e9f4382c96d19c941c69bcd654443771af6253611b45
MD5 e3b0cee6225305c49e88c4320f22caee
BLAKE2b-256 c43c7756e90bfef529ab92a3c00d103fde922dbd4d6b7aedbac72a3b4785d6a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33d681d60a5a7c53b2d327a61bbdf94c0a2bde86b3f7adeb2361e81930631b03
MD5 7192c35767e669383628e765ec28699a
BLAKE2b-256 02f99a7ba2d6f454fef65705faaa76b890930353059cd7c9ba0393c4f6197ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54e90c8b7b477378e6494b8bd61874623a9b28ce120f8608295de74f6a457746
MD5 dc0020ec4f4277f20531569399a1baf5
BLAKE2b-256 0b442cc112d329c92507fbef525a1ace70ddd7e7b1979fed50a7c330a3399ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4325cba3b968e31cdab8d6db6b981774bc220726a5b84a59ee2544aa2ebd6be1
MD5 dc47411f3f8918e3837b7e5944aada2e
BLAKE2b-256 2878278683f29e93fa265877fd65c31df83939784b67b62fd92e8ff572bdb728

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for webgraph-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7a5228b2c1b86687fb6d5ce10aa930d090b0b620ba3f6ae6f671d030298ba64a
MD5 f28ed3f8e6e7a658300305c7593c43f2
BLAKE2b-256 75b09a3dc07c36ac09bcbd22aef38eeb84f142f470712b8d40dd50c17c220249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2825b37a94a6a8077d5eb7e1d946ce3afda6c4c41e0e43b5258b4a785e13cca1
MD5 e640c7ec8535678edef34b81c123052d
BLAKE2b-256 dec9fce1f854c278e967efd99404176e265e55fe9c3cef32d5abf83cc854c970

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 caffb7afafbcc68ed54c9165b4634bfc6c4494546a2f4955928553a4a28cd66b
MD5 faad8b9607281edc4a67d3f6bc57ce2d
BLAKE2b-256 45cc48261f1421196297bc7f79cb049b15287b30977e499ee5437d381346c077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39f199ead8b8e47c6ddc65563a0b59ee065a64a8e5cbb581d48227966eecf2d2
MD5 10b13680a5372ec0f9edc4de032813c7
BLAKE2b-256 6eded372ac85b1ee9f4461188dcdf6c97e93133e70df1e941b1dbfa68ecabbda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e57b897770f2d537475b823816c4468aa904055e844a6980f075519a8fe3060
MD5 a177bb55d00cedcfea5b6bfae1f1cc5e
BLAKE2b-256 558d7cbe4acbd6f303aeb2213e496f15f73978731b756248acc7798125e6be1f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for webgraph-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f249705e7308c6a7266965ae7303af99e4ed272e642e75ef0f63ad1ea6a90573
MD5 97a23136860a4d7b3b051b5b3832dec5
BLAKE2b-256 2eaaf2c40eec6c4012d4523fb58b5ff5696b3db96f4ec2860a436b36532e722f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1601d0376a74051611c197543216244fa91bd8c34cb4d4e87d689a9a70ac6303
MD5 d5530b4b05464235b380bab0e29dc985
BLAKE2b-256 db799dc04854cffd11e56d68131e35c70f90a669e864aa0b998496ef624d2ec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9834099669d15b577143385cbe47aec7d2e0884eb5fa039d4f3e872b59f18f59
MD5 c3ebb39353e5e31cb3175314f42cb980
BLAKE2b-256 66a596cdfa98cab98047b34409ffe3ed06b28ae255726e6a99fc8a1cc9735db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fe0b5de177b615f3c87dec4bf34b9c6293617ef5758e8ab1303b3befdbb78f4
MD5 aa86c78c6ee8f52263d06420a229dc52
BLAKE2b-256 f2a9230202a22f09bcffaad370e4dea55decf5e31337196632d654c865527f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a96347374fbf04d570dc9647974f73ea59b31bcb53641424f237e2e802e09bb6
MD5 b4a165fb4b96ca200312b9c48811873f
BLAKE2b-256 c6174a777f89a7078d65e54f59baba970f16672e3abc6e5682fd5f89bd11ccdf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for webgraph-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f8c332e0b53923a671236e579050710ecfa4b3bbbf6c13e61484ec127b75dfe1
MD5 1958c6210dd35f2ccea612ca9c0b7e6f
BLAKE2b-256 f6a40704f148266b0efdd4346dfebb6ac6c0e4faac41203a0a7fcafb3e419a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 077e4a34867f0c959e736536b770aebc976d83040ef6fc1b787e9577ca80b889
MD5 e41d63da75354593f93c01b831c32b21
BLAKE2b-256 f3fb306afcaf73412e13677309dd388761c63a6290febabeb4042c33cf92d3be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4de199a4e6cedc5b859e8db846cdd5ffa472f4a2c00f35612817d0fe46cd92aa
MD5 5fe14a9182baba003f50dd46fdc46a4f
BLAKE2b-256 1c910a0a7132a9591d6acdbbe4335f12498ddc0b06e54b2144efb98a12068ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bcbe1cf2bf12f93b8284f89154ed927167b6dbefd8a301c46332aaecd052bb2
MD5 c5b94d19fc28bee5273f44fc6eab6d6d
BLAKE2b-256 576790ba4130ebf1d5f6cd3bc75c3dbb3b55b1364a9646041ed1268f85af9dd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 911203e6e55b09efaf9c04280481212d314acc8ad01985176539b306d57f33db
MD5 3911582b33e02b49989aa8499ad7a78e
BLAKE2b-256 72e977c9ab212ba1f0aa5ef66e9a9564bab56ffe5a183f8cd231e046e079fb4d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for webgraph-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1626adfd92deb9a658af32ec956252340e3214c182efd6048e6c474419e882e2
MD5 d8fbdefecffac802ebfd5ae2a8df1092
BLAKE2b-256 8566fa13a9fa0ba7da2827494a19f21d99a2f9feb3aee808ef53aac92a4440f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 092d788ced292e59ffb19b41a4edbdf73ca03c03e3211644be62e0258d87b352
MD5 df89d6958ba59fcb7ffd71580af82054
BLAKE2b-256 a247b949666844ebd8d994234038d30018ec8a512d92c1e66ba559604da498fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c38b89eb65dde61a08f911a0df4b189b8e2229895a1a073b213c9d6ac20223bd
MD5 71e22a4a1b1eccea54cd0b0155d66093
BLAKE2b-256 8962e417d2520722705e46f30e0f9399b2f091e9d8b8605292c2c7ecd3001c6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f5af91b80231f3a4626da9cb7f0ce772ab742c30859b9202d60b9fd99b6f256
MD5 204738294a544048bb61d6bdbe676bf1
BLAKE2b-256 f801ee6f7f53f9723ceb48927efaacad27e98ad5e4be4fc679d09fbb55d0f020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for webgraph-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd6a3def50bb3ca5f24ddf798495bdd4c286a7f4f82d53a9e20760dc282bfcc3
MD5 49f44e52e3948200bed75f195e22c0d0
BLAKE2b-256 559349544fe8fbaca97fbb5443438fa7c714fb01b6fc2e2c2392074e7fc5cc17

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

0.1.4 This release

31 files

0.1.3

29 files

0.1.2

29 files

0.1.1

29 files

0.1.0

29 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page