Skip to main content
GraphRecords Logo

GraphRecords

GraphRecords stores entities and their relationships as a graph. Nodes hold attributes. Edges connect nodes and can also hold attributes. Groups organize subsets of nodes and edges.

A GraphRecord is immutable. Every method that changes data returns a new GraphRecord and leaves the old one untouched. This makes records safe to share, cheap to snapshot, and free of locks.

When to Use GraphRecords

GraphRecords fits problems where:

  • Data has natural relationships (users and products, documents and citations, components and dependencies)
  • You need to query based on relationships ("find all users connected to products over $100")
  • Different entity types have different attributes (users have age, products have price)

Installation

pip install graphrecords

Building a Graph

Since every call returns a new record, building is a chain:

import graphrecords as gr

# Nodes are tuples: (index, {attributes})
record = (
    gr.GraphRecord()
    .add_nodes_in_group(
        [
            ("alice", {"age": 30}),
            ("bob", {"age": 25}),
            ("carol", {"age": 35}),
        ],
        "users",
    )
    .add_nodes_in_group(
        [
            ("widget", {"price": 10.0}),
            ("gadget", {"price": 25.0}),
        ],
        "products",
    )
    # Edges are tuples: (source, target, {attributes})
    .add_edges_in_group(
        [
            ("alice", "widget", {"quantity": 1}),
            ("bob", "gadget", {"quantity": 2}),
            ("alice", "gadget", {"quantity": 1}),
        ],
        "purchases",
    )
)

add_nodes and add_edges do the same without a group.

You can also load Polars DataFrames, naming the index columns:

import polars as pl

users = pl.DataFrame({"id": ["alice", "bob"], "age": [30, 25]})
record = record.add_nodes((users, "id"))

purchases = pl.DataFrame({"user": ["alice"], "product": ["widget"], "qty": [1]})
record = record.add_edges((purchases, "user", "product"))

Anything that exports an Arrow stream works the same way.

Accessing Data

record.node_indices()  # ['alice', 'bob', 'carol', 'widget', 'gadget']

# node() returns a view of one node
alice = record.node("alice")
alice.attribute("age")  # 30
alice.attributes()  # {'age': 30}
alice.neighbors()  # ['widget', 'gadget']
alice.degree()  # 2

# group() returns a view of one group
record.group("users").nodes()  # ['alice', 'bob', 'carol']

# Edge indices are opaque values, not integers
edge_index = record.edge_indices()[0]
record.edge(edge_index).attributes()  # {'quantity': 1}

Querying

Queries are expressions. gr.nodes() and gr.edges() start free expressions that are not tied to any record; record.nodes() binds one to a record, which makes it a series. A series only runs when you call evaluate().

adult_users = record.nodes().filter(
    gr.nodes().in_group("users") & (gr.nodes().attribute("age") > 25)
)
list(adult_users.evaluate())  # ['alice', 'carol']

Expressions traverse the graph themselves — the chain reads as the question it asks:

bulk_buyers = (
    record.edges()
    .filter(gr.edges().in_group("purchases") & (gr.edges().attribute("quantity") >= 2))
    .source_node()
)
list(bulk_buyers.evaluate())  # ['bob']

And they aggregate:

record.nodes().filter(gr.nodes().in_group("users")).attribute("age").mean().evaluate()
# 30.0

Every operation is checked twice: the type checker rejects operations that do not fit the current shape of the expression while you write, and the engine optimizes the query before running it. explain() shows the optimized plan, explain_unoptimized() the raw one.

The result of evaluate() is consumed by iterating it once. Evaluate again for a fresh result, or collect into a list first.

Schema

Schemas define what attributes are allowed and their types.

Inferred mode (default): The schema learns from data as you add it. Any attribute is allowed.

Provided mode: The schema is fixed. Data that doesn't match is rejected.

from graphrecords.schema import AttributeDataType, AttributeType, GroupSchema, Schema
from graphrecords.datatype import Int, String

schema = Schema(
    groups={
        "users": GroupSchema(
            nodes={
                "age": AttributeDataType(Int(), AttributeType.Continuous),
                "name": AttributeDataType(String(), AttributeType.Unstructured),
            }
        )
    }
)

record = gr.GraphRecord.with_schema(schema)
record = record.freeze_schema()  # Switch to provided mode

# Now adding a user without 'age' or 'name' raises an error

Schemas are immutable like records: set_node_attribute, add_group, freeze, and the other schema methods all return a new schema.

Plugins

A plugin hooks into every change made to a record. A hook sees the pending change and can let it through, or return a modified one:

class Audit:
    def on_add_nodes(self, record, payload):
        print(f"adding {len(payload.batch)} nodes")


record = record.add_plugin("audit", Audit())

Hooks exist for every change (on_add_nodes, post_remove_edges, ...). A plugin only pays for the hooks it defines. Returning None from a hook applies the change unchanged; returning a payload replaces it, and returning a list of payloads replaces it with several (an empty list drops it). The post_* hooks observe the applied result and can veto by raising.

Serialization

Save and load graphs using RON format:

record.to_ron("graph.ron")
loaded = gr.GraphRecord.from_ron("graph.ron")

Export to DataFrames, one pair of tables per group plus the ungrouped rest:

export = record.to_polars()
export["ungrouped"]["nodes"]  # a Polars DataFrame
export["groups"]["users"]["nodes"]

record.to_arrow()  # the same shape, as Arrow tables

Documentation

Background

GraphRecords started as MedRecord in the medmodels library. We realized it has applications beyond the medical domain and published it as a standalone library.

License

MIT. See LICENSE.

Release files for graphrecords 0.6.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for graphrecords 0.6.1
File Size Uploaded
graphrecords-0.6.1.tar.gz 441.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for graphrecords 0.6.1
File
graphrecords-0.6.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
graphrecords-0.6.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
graphrecords-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.1-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.1-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
graphrecords-0.6.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
graphrecords-0.6.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-32 Details
graphrecords-0.6.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
graphrecords-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
graphrecords-0.6.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
graphrecords-0.6.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
graphrecords-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.1-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.1-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
graphrecords-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
graphrecords-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
graphrecords-0.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
graphrecords-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
graphrecords-0.6.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
graphrecords-0.6.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
graphrecords-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.1-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.1-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
graphrecords-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
graphrecords-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
graphrecords-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
graphrecords-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
graphrecords-0.6.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
graphrecords-0.6.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
graphrecords-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.1-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.1-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
graphrecords-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
graphrecords-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
graphrecords-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
graphrecords-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
graphrecords-0.6.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
graphrecords-0.6.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
graphrecords-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.1-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.1-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
graphrecords-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
graphrecords-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
graphrecords-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
graphrecords-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 779.1 MB

Release files / graphrecords-0.6.1.tar.gz

Download URL graphrecords-0.6.1.tar.gz
Size 441.9 kB
Tags Source
SHA-256 checksum
How to use checksums
5b315a48e917cfdaf87898cd118f8f819cf2c9eff2a9fc5285a6e284d80946e3
BLAKE2b-256 checksum
How to use checksums
00612176db05dc55cdcea0a75bbe4ad755826389feb44d3a54e12212c56a3e1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-win_amd64.whl

Download URL graphrecords-0.6.1-cp314-cp314-win_amd64.whl
Size 13.7 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
53567caa39a49b5fd8c9f24f37ac68445031ec422891749f1637a1d10c796451
BLAKE2b-256 checksum
How to use checksums
eeb97e1ee887551ccba62377c010028b1150c7163e2f10fc440cdedd8beaafae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-win32.whl

Download URL graphrecords-0.6.1-cp314-cp314-win32.whl
Size 11.1 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
863a0e9eef0db316104fc91832071a4b18b54cd2ec0e94fdd2f6b8bf62c6edc0
BLAKE2b-256 checksum
How to use checksums
70b073f6ea87dfe6fcfa4d3351b8996860dab3937708344fe009e6df250f448d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL graphrecords-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 12.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
87b49c935a29104c19f2a5dc62224f5b8eef8102769e427c7ed94f8d59160246
BLAKE2b-256 checksum
How to use checksums
ec7a4ffd40e39e91319f3c52acbd1b0465c7d6cad605d5e4c14f216f6daf1830
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-musllinux_1_2_i686.whl

Download URL graphrecords-0.6.1-cp314-cp314-musllinux_1_2_i686.whl
Size 12.7 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
9acc21e73f3ee1c4d7013c619062c89f7b9b583eb45c3ff3c9af0391d2645cd9
BLAKE2b-256 checksum
How to use checksums
bbadf8949a370b84e9e4f8ec35aa6db7bd1d63b28fbf27b417f5276942a63857
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL graphrecords-0.6.1-cp314-cp314-musllinux_1_2_armv7l.whl
Size 11.2 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
402473989db96b4ea09f6a05a04fdfc7ac40958fa2ef0b6496271f8d9b813cb3
BLAKE2b-256 checksum
How to use checksums
dcff28f541c1d7c17b888b05d7d3fc7c5d03a80d5e5846b33fbd82e5fb2de838
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL graphrecords-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 11.7 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ba4ae927ec5bd4bc8c0be633f4466a7473f70a9cdb09e7fb351e9b546b227b45
BLAKE2b-256 checksum
How to use checksums
56caf25a216ff5f65b4bb6c5ed663adabc70f951d54f60f0b490218fcde19c0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL graphrecords-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 12.2 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c2ae28fa0e4e77ef8da4c60436ddc84ac470c93b270d27773e18c88b808fc5e1
BLAKE2b-256 checksum
How to use checksums
f7779e9e89860eb1263021d1749d73ca5f05a7b58c80d91fc3b0f3675e7e08f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL graphrecords-0.6.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 13.4 MB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9303ed53543fe3d6a75511484b171cc3a189621da43b1581f8702c7c06bb4ca4
BLAKE2b-256 checksum
How to use checksums
15ae441a42726505a40c3d8a77b93a9421a653a5ce7b5afe3edb88f244aaebe0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL graphrecords-0.6.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Size 13.1 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
de0e1869b0dd70fdbb3b09cfcd9cd5195efa5feac31fe7e38b27386472fa7e33
BLAKE2b-256 checksum
How to use checksums
7fb3ca9cb1c788efea9e36ee7294595c425747e8f1b7121d2d1e30d2d5fb96eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL graphrecords-0.6.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.9 MB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
4adba9584eae84b76f712bb52f727fb2d590976d0deda5d5240f1ce6ceaa50d8
BLAKE2b-256 checksum
How to use checksums
3fa92bf3e7c1a09fb573244e8e5c39a6fa8d8875ecfd03d761a2c244b73fb349
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL graphrecords-0.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 11.6 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
639b277199f3431d20f4a25d116bcbbddc7c2aa057e7a2a757d75a27b043f753
BLAKE2b-256 checksum
How to use checksums
8069c82b59e34e2dc0b55dd2c4943cdea5664983cdd5b1f1ed3bee2d8e41fd07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL graphrecords-0.6.1-cp314-cp314-macosx_11_0_arm64.whl
Size 10.6 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a9683a8d941cb2e913c1a9439ec38a199c3a3ce456d0c49be523a7be84f37eda
BLAKE2b-256 checksum
How to use checksums
0815a970b68a71e2901a40404653805aa7d24e698937b3f08ca2be09a20c9982
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl

Download URL graphrecords-0.6.1-cp314-cp314-macosx_10_12_x86_64.whl
Size 11.1 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
162eda8c51fbea3d809ac91964c6e0901488226d7c18d46f5381e19243fc1ab1
BLAKE2b-256 checksum
How to use checksums
4373fa9df52990fcbef3e4ffe620918924a636e5cbb3af2391242d579ec20779
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-win_amd64.whl

Download URL graphrecords-0.6.1-cp313-cp313-win_amd64.whl
Size 13.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
b610283fcfad8d4447931a5fd5a9b96475973b0666123571ef0eb4e5f223aa0c
BLAKE2b-256 checksum
How to use checksums
47f0abfc2baa829e0b65a5a6a730bc2278879f14fed7bbf2d7e1e1e2a8766718
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-win32.whl

Download URL graphrecords-0.6.1-cp313-cp313-win32.whl
Size 11.1 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
67c0817f1f0781b4ad0ac452965eb18c2f925e6de89c8ffbdc62571bec83dbbf
BLAKE2b-256 checksum
How to use checksums
32fdb072106de2e06a9887117d0053fd6a729761068a61f21c1a47ef233f7647
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL graphrecords-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 12.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a94e004e0dd94b1446fd3ea00b9357fbaa92e53d1de7f8d0775dd56e638fc479
BLAKE2b-256 checksum
How to use checksums
e46d185c0d4d2099a1239d9565f9f2ee7cf6570dafb2756453e98350e86123b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-musllinux_1_2_i686.whl

Download URL graphrecords-0.6.1-cp313-cp313-musllinux_1_2_i686.whl
Size 12.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1e84f51dc737d1772189a59ac1e39ac07128644fd8e1edc949abf13c133d0492
BLAKE2b-256 checksum
How to use checksums
5c6041fc3daff38362949afaeb8ad46e431366459b263eed099582bbaa9db21b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL graphrecords-0.6.1-cp313-cp313-musllinux_1_2_armv7l.whl
Size 11.2 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
95342661ddb5cf8558b4ccf5ec345a1c43a6d4224d527fa2511c1f83f4ec9512
BLAKE2b-256 checksum
How to use checksums
9e8aafe2e9c42c48065415bd6276c69ee44936fc37cfa620deeb10042d45a1f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL graphrecords-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 11.7 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0bc04f1fff055872b20907aa3e90b5c6717671db47babf736f7bb81f7ae52180
BLAKE2b-256 checksum
How to use checksums
f776258516794dd4b64fc892b6675eb53d2a888da9105d8bed1d406c6cc79558
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL graphrecords-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 12.2 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
dca6a13c4e51cd354e5617dd25fdb949d10c8f9ad8564781d40da90b820dd336
BLAKE2b-256 checksum
How to use checksums
dc3de52bb80f76186bab9a998c0cddbbb5400336dd9460a7159ae5f9ac60c661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL graphrecords-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 13.4 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8f41f3e5c2e1cf1f6fd9e65bc038255d48e5f25e5b3774256f1f7a26ed4189d4
BLAKE2b-256 checksum
How to use checksums
5d93f23cea9cf5f021fc9dc73bd5f263bf9de94db8eee0936e739295f5be1a36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL graphrecords-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 13.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ee4e06c0d7cccea0229e1bd8ba84712ba1aecd0014f7b242841006a179bb1c47
BLAKE2b-256 checksum
How to use checksums
a2848ba4a4276bf353704a96dfd6a0c12308a69658b049c91b39c8b57e22b398
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL graphrecords-0.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.9 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
bb5d33ffc56d7d8c79a8502cab60a1faeab7c07456e5169766ae650fede1e46c
BLAKE2b-256 checksum
How to use checksums
1b48d2984572985976b4456d2bf8aedc1b5f07f7249eab2a89dda7d0992175af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL graphrecords-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 11.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
da30ce580caf17057ad1500220d835d23dc41040d1e892dc1ee88f51e83c53ad
BLAKE2b-256 checksum
How to use checksums
19ce6de7a81c828d0633f2d333a90230450a377a1690570ea2721925f61a9d23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL graphrecords-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Size 10.7 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3e7b9c2eff9a01c5107a93d80e975948298f84779da3fb036dcd3d28039e3f11
BLAKE2b-256 checksum
How to use checksums
d527ac382f912a6616a316b9efe0ebc6273c414c413560c1e795dd656aec5222
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl

Download URL graphrecords-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 11.1 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
2fcd05e58af2632c5b483dc9f8d2a4dcb00a050be60ce0361a71cf24ec08e25f
BLAKE2b-256 checksum
How to use checksums
069e1b54f766a43fcea5e0dcb3d5ee820e8a5613a2372a829e0a1f73659314fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-win_amd64.whl

Download URL graphrecords-0.6.1-cp312-cp312-win_amd64.whl
Size 13.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
93cceb634c6fce0a9f8316bcb34127805095b5ca0318320e20aac1fc3e1b8079
BLAKE2b-256 checksum
How to use checksums
b3d6fb48b3d937e6d12f878a66bd2ba92d10dc48d1f2af3c2d03363b40346dda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-win32.whl

Download URL graphrecords-0.6.1-cp312-cp312-win32.whl
Size 11.1 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
7ac5f3c1c0dbc7e928bb0eb6bcc5d5c743f7e0c4b99c0e1dde75dc038120a541
BLAKE2b-256 checksum
How to use checksums
15e4b7be75121a6e29cf1d133e8b9c88cc2209b778bce93148046566467138ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL graphrecords-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 12.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a14861c657f798f428a28fdb0c3bcdb5c0f487b72a150fa2df5624edb8fc6bf2
BLAKE2b-256 checksum
How to use checksums
37c8e1899fb2474851f35379455a789b1357934165e75edd073606eb85bb7e77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-musllinux_1_2_i686.whl

Download URL graphrecords-0.6.1-cp312-cp312-musllinux_1_2_i686.whl
Size 12.7 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b9b1eaeabbb118f1d86464019af58a4ed8eb13ca8f86e46dcb7d67b3f7831b0d
BLAKE2b-256 checksum
How to use checksums
ab0a3f93a21f617dbd2865851610289cb5f7c6e19aa8e6b0bd18946a12993643
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL graphrecords-0.6.1-cp312-cp312-musllinux_1_2_armv7l.whl
Size 11.2 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
e9c30c68eeb9e2acbd43f9a106f222de703e524f8444f020e5a1842e5f11fab6
BLAKE2b-256 checksum
How to use checksums
0911e3a4da04f0f0c5f612a7431a63b87d64159ce12036c5b9c6c003ca1e090f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL graphrecords-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 11.7 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
118ac028a9bd7e53dfe34ab1dec7fe94772d30409750915c8ca20dfcc3d8dec5
BLAKE2b-256 checksum
How to use checksums
76942fe6afe6395f840a24a203176b053b856f79a69d98b834685600e7f76bc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL graphrecords-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 12.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
757678ae0d53d0f3d2875dab03379d240d71680188414afc765667de3206abca
BLAKE2b-256 checksum
How to use checksums
f2581b8abb30d130bffc735e9b826bbbd0864c87f3aa7405a9336048906dc5ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL graphrecords-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 13.4 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
caad182850d30d31fe04706466788a8b7625ec1cc9fa001aa72851c3fc1bef64
BLAKE2b-256 checksum
How to use checksums
4cef208266840ad8dc481ea91a441459da978ff0e5eb8e1ba9c742801c98cd78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL graphrecords-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 13.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
b56423585b692779e7e0148d6a6acba7683d0f5bcfaadea729b18360883efe4f
BLAKE2b-256 checksum
How to use checksums
467c8537fb8ac36f406e36c4b34e182d3bf9dea1ab57408eab46047d7abffd14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL graphrecords-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.9 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
e9125e749fa88154b10a536431082a6722672f28034243035c8053938126b639
BLAKE2b-256 checksum
How to use checksums
b76d99cc23aac879fc59e464ba8f444a299cfd980f1d48e866af2fb62f95e905
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL graphrecords-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 11.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a97b870d04d443db28c289be97213892a642fc6ed124e6f960a0466dd64990bc
BLAKE2b-256 checksum
How to use checksums
93f5cb12185cefd737b11fe8693be55b811f40204ed4e4b984b4d9dcae6c62e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL graphrecords-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Size 10.7 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7d1ae884fd9be9026d4c846de285ba5520f41b0a2ed43b6d924c25dacf1fb304
BLAKE2b-256 checksum
How to use checksums
b8b8588546647302b0d431bc6df06d0393ff09ff56cac10b0fe25660b78f974c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl

Download URL graphrecords-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 11.1 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
afa4a133f1b5cce942663c218df32fa5ed282916e8d8942f2535efea66bd8a81
BLAKE2b-256 checksum
How to use checksums
952c1bd06721bdc632d6b215a6930999a0220c0e562b13bc30a8b50766118ed9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-win_amd64.whl

Download URL graphrecords-0.6.1-cp311-cp311-win_amd64.whl
Size 13.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
35c21cd687bc560c6d74306acfeb934318a15f15c27ac78e9d1d70e73fe4409e
BLAKE2b-256 checksum
How to use checksums
34d4d0a13b6c192239e8fbaddb96f866de124fb0dddf01846fa69001b500a40e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-win32.whl

Download URL graphrecords-0.6.1-cp311-cp311-win32.whl
Size 11.1 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
e8614da460c13f72401993af7e75bcb5a72a6a9fe6ca005fe6f79059682161be
BLAKE2b-256 checksum
How to use checksums
eb4b92d36c664a9589c55392d5eda1a80ce3e0c8cf38c38f4c102736b526def2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL graphrecords-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 12.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
41a07bdeed4718e4c5b0f9134de918165db899f1505c62d3631910d96b9c6cc3
BLAKE2b-256 checksum
How to use checksums
8e674d1d480294b7d8222240f48e6a2851aaa5adb1918f936fd1e751173762df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-musllinux_1_2_i686.whl

Download URL graphrecords-0.6.1-cp311-cp311-musllinux_1_2_i686.whl
Size 12.7 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
ec00b75cc1468790b24769225823fcffaf064f3395e1853be1858d8185c75c63
BLAKE2b-256 checksum
How to use checksums
cbacb6d231b1e9ba588b3c2c56776dfd30b1fa4488a73a61d6448ddbb25d357f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL graphrecords-0.6.1-cp311-cp311-musllinux_1_2_armv7l.whl
Size 11.2 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
9a9ed56a8d18bec9c7306d60f2f6fb6bfca231c57169cfedc73f8ce63c54c106
BLAKE2b-256 checksum
How to use checksums
2eed1ae7f803fcc85b45f1b6cc53e617b6f71b7839a32a631e26c343e1c90a90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL graphrecords-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 11.7 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
722312f49be4763d748f82164a53aed03b8e101b0d5aef8b05e5ebe42263a719
BLAKE2b-256 checksum
How to use checksums
f2154c2eeab6a22ad1bcd46c5a0f708c847a8e227c6eff9d117a558fb595bfc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL graphrecords-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 12.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2f6eeea6c72f7a16408e2e491977ef899c7021a78c2cf5d793557ff1a612b13a
BLAKE2b-256 checksum
How to use checksums
6c04e1d4e17c17873070a509a6069fd15af591d6114dd84fe8d63609de4746d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL graphrecords-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 13.4 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c09eb580e692fda8ddddd930ccf3c1948d2971ca62cd791fd84e170ae1eaf4ae
BLAKE2b-256 checksum
How to use checksums
6a684fd9cd1446293b2459649287f2cffca2e51260d5db8f4954936120adf48f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL graphrecords-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 13.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6079a2585bbf7e16ab019a444d02fe5a57919a6022c869610ff9930a83db945b
BLAKE2b-256 checksum
How to use checksums
6d544a276b04344f6ae3d515fd1af462cc62a9e0a97e9dbb8decd1f0cf0731d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL graphrecords-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.9 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
5d94608a37ec9fd17b07970b0278cdf3b7691448b482fe16e045c863102c9345
BLAKE2b-256 checksum
How to use checksums
79e0ca2db159f6e15ba9ef53ff92d46e38acc37cc55fbe7ad7d5df01d2d5d501
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL graphrecords-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 11.6 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1250db9195332cb4c731ab9a7f38cc496a7ceb382937aec50bbed414a32210e5
BLAKE2b-256 checksum
How to use checksums
32186a01abb61b7a648e57b5f90f836c9e1de4596f2d2a47ed099e2565b996b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL graphrecords-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Size 10.7 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
49345146a93617181c2368b622d9b80193add4b0bc8ce41d07d0f0ba9f77659b
BLAKE2b-256 checksum
How to use checksums
8aa7710d282658123d3f568d10b13504c965c0c01305e27ba6b3720177e8a7c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl

Download URL graphrecords-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 11.1 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
c721e35b00f69ecf2da8e0873135988eb851686713f470241f64b5f3236dbbf7
BLAKE2b-256 checksum
How to use checksums
14bb0be6a346f319bf8885b9b3465802be32882a603fc8a95db48a90aba700d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-win_amd64.whl

Download URL graphrecords-0.6.1-cp310-cp310-win_amd64.whl
Size 13.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
57a210f50a1208ef9c3dc619348311c3d1045215c0c10f6cb97cf64cc4981182
BLAKE2b-256 checksum
How to use checksums
f5db0dcb6120999ed876162b00157ab466afd165952dbb2e879d527a6ecf8763
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-win32.whl

Download URL graphrecords-0.6.1-cp310-cp310-win32.whl
Size 11.1 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
2f53c03c34f92e716e681698f68f091560774786f0238723567d70b06ef80054
BLAKE2b-256 checksum
How to use checksums
99ece74619ae0603fd795ae0ee818fa8e86c5a4e5cf8134e911e5f304b7293d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL graphrecords-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 12.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8dc248816442084a44c4ef823cc3d5e8f77c576fa65b51bd3b054c9e0d3f428e
BLAKE2b-256 checksum
How to use checksums
c64af727a9a1e138f2317055791478ece646e111f31bca509a44c60b5324eb64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-musllinux_1_2_i686.whl

Download URL graphrecords-0.6.1-cp310-cp310-musllinux_1_2_i686.whl
Size 12.7 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
27ab5213a474a8401658f336bffb607c3965c32abf27e73835a53b070eb9dd75
BLAKE2b-256 checksum
How to use checksums
0254333d1401882e5493ca3b2643d8b01dcef81b3e3ad9be8f7da392b4e755f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL graphrecords-0.6.1-cp310-cp310-musllinux_1_2_armv7l.whl
Size 11.2 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
fa3988738d19258ae680a4f38e67c77d76d489e84028858dc8c2d4003d057206
BLAKE2b-256 checksum
How to use checksums
c0871a2746bdb64f79ac93047c4cf7c789b23a729ea14abd41d73b6a86ea01b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL graphrecords-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 11.7 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
82e3747ae6303f1c87dcc921e2c143a1e058724774ad558b95b27718e70512ef
BLAKE2b-256 checksum
How to use checksums
67337725cf7cf61e80fa8e1d88b1d609287ed40b4c1f74dd97335ccdca8828a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL graphrecords-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 12.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e1f110b94f4086b27f62aece38326c074b1acfe8c51fdbc6790d779e724a3555
BLAKE2b-256 checksum
How to use checksums
fdd4cd2011c2272f54c1212ac70fa22f7d7d15e3ca2614a1f213592c1204dc38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL graphrecords-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 13.4 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
07d789c84ee74ed72e935a6054ed112a792f4753e702e7c83a68a0b17e966fd0
BLAKE2b-256 checksum
How to use checksums
c983920a2781f13ef12938cce75c6040fa04d713b485e8fefbb2e5f782b47105
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL graphrecords-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 13.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
36244f05e11979f0753ffc0ee0a51c7a49718f4273abe0776061ae3a038c7453
BLAKE2b-256 checksum
How to use checksums
7c4c9024ea596ee3e52e2c7fa8779f7e1a970e44856fdb373e080cdc55de442b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL graphrecords-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.9 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d60da7a3d3deebe710a69854153707b78831de474d821bf082cc7b7c1ecfaef9
BLAKE2b-256 checksum
How to use checksums
1f52b5010dfb05a88a1893ad6e7c11217c2bec0105b7ea0ccf02bb59c5946d68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL graphrecords-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 11.6 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1ea9725cf117c4795c17fe7dfb14891c086ccd4513c3c88e2670bb0b98e91573
BLAKE2b-256 checksum
How to use checksums
f4c54923de235e9e29368bdb20f345bf71791204f2d39e8a8bafec66a0f1bb70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL graphrecords-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Size 10.7 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4ea590ed13fddf864c2f71865dac093c34d2ce1666edf092356acc5b22f7fe4f
BLAKE2b-256 checksum
How to use checksums
0168297498b9e36a78159076a95c1bafcc85cea5cfa534984324192002eccbed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / graphrecords-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl

Download URL graphrecords-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Size 11.1 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
93148c540153763fb065cc2c3606688c10784dcedcd5c3d5add4e2a4bb2a9269
BLAKE2b-256 checksum
How to use checksums
20dbb3ee1d23303e2b627dae4cc00201e6bf5dd4133479966c2086cc933cb47d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release history Release notifications | RSS feed

This release

0.6.1 This release

66 release files

0.6.0

66 release files

0.5.0

66 release files

0.4.0

53 release 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