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.0

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.0
File Size Uploaded
graphrecords-0.6.0.tar.gz 441.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for graphrecords 0.6.0
File
graphrecords-0.6.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
graphrecords-0.6.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
graphrecords-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.0-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.0-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.0-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.0-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.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
graphrecords-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
graphrecords-0.6.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
graphrecords-0.6.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
graphrecords-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.0-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.0-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.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
graphrecords-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
graphrecords-0.6.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
graphrecords-0.6.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
graphrecords-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
graphrecords-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
graphrecords-0.6.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
graphrecords-0.6.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
graphrecords-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.0-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.0-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.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
graphrecords-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
graphrecords-0.6.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
graphrecords-0.6.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
graphrecords-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
graphrecords-0.6.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
graphrecords-0.6.0-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
graphrecords-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
graphrecords-0.6.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
graphrecords-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
graphrecords-0.6.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
graphrecords-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 779.3 MB

Release files / graphrecords-0.6.0.tar.gz

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

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

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

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

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

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

Download URL graphrecords-0.6.0-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
1a6e50ec91ff6b56adbc93dc231049ddeb3fca1edf7b91e695e18aecd94a53bc
BLAKE2b-256 checksum
How to use checksums
e198d1b1241295f917edc47635210e2fe3e8dd81358d0b55323fbd0de515dbac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
9135f3b6a6d2bce61163f04bb814cee6ab3541efd5f2d2f35ca367fdbdbbfb2a
BLAKE2b-256 checksum
How to use checksums
bc9692769b05d94a4fac2d5b1fd25bcfb8bb5bb065bb5578dde667dfa9672248
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
05381df104d0aee807b5bb676fb711681517024e5eacb050c1770c82caa21f49
BLAKE2b-256 checksum
How to use checksums
a0ed174d1cad97b2828189600d89e968c4275b839900bf4e02f747740fd91ddb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
54c945cdeea3391873717901934ba72226ca29d9f55363416cb9599232ba827e
BLAKE2b-256 checksum
How to use checksums
279421648691b931d356a63dad87add882cea9402b8f708b8638f0cbe321290d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
05a56895ed4ff7738169e5ae69ed062a826f29fe0449cbf45081806c04249be7
BLAKE2b-256 checksum
How to use checksums
c88fbe89b2fa47771856212021c722cd8370d6162fbf0d2f84898544e70d6bde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
3f4358fb24c104a3e115660dc341fb746896d7a1cd58f99b608a656aa9348d4c
BLAKE2b-256 checksum
How to use checksums
3ab321dfaa35541de655566c1cb9d6115afec96cda5aadf63779489561e7ea54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
2941110a0c57e4158205eda6d66fa13f1f9921f43624d8dac2b5bed354836634
BLAKE2b-256 checksum
How to use checksums
89fa62783c0c74d63a39bf308f007e56c4a9faaa063cd96953e98b6be862c9fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
e67750f1e6c0bb08d470d9c09b8fd5e4b97132ddbe0a0ea1270c5a163a57cee0
BLAKE2b-256 checksum
How to use checksums
450c07a25e027231f7e733c758b47fea59d9e5aa4c8210c972bb8e3dbdb455a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
ada4b75e45d1539c2820e16a922d0359670d2f18f27b79ee7de5ab50123a7f43
BLAKE2b-256 checksum
How to use checksums
f4ec597611ba9256259082ad715b192331e65e8e62029d129f8ba94ba92de394
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Size 10.7 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5dbd509704dc00be21842a032d4142f9f41f5507582d70ef0a04493e2a6193f8
BLAKE2b-256 checksum
How to use checksums
002a29fa401d94a364b1646d84286788b6ca1375559031b0f48133e043ce1df2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
c5e975d4237962582d298ca4ae4dd6660b071fed40fee70129116aabf629b787
BLAKE2b-256 checksum
How to use checksums
89c43def3c92d86c7442c232d52e322941545549b5ae1c7e05178bdacbda0da1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

Download URL graphrecords-0.6.0-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
678f2db0da726464e412af5181b72c5eaadadfb99a954aea26b1e5b38cac0023
BLAKE2b-256 checksum
How to use checksums
a247c657e378b1ce32d13e37440db343455f6133f805ca4b0caba0038d544a51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
6f9b5c6facbbc5e80bbf0c0ee0431d68f9d3c287757a6d65607c3360023bea3a
BLAKE2b-256 checksum
How to use checksums
f3f51745e9e1e1e124e832c5f0c84eab145afd817036e10e06e7b946d9d1444b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
a63d39843da862761d0bb9a45c09ea6e5d852e3feaa46ddf7d0f6a98e2f290b9
BLAKE2b-256 checksum
How to use checksums
ddf3ef126e278104f3c482e6c1deea62b28cc474edd311dfcc0ca98e801b098e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
71c5fe685babe1648760fc851179c2cc26517a366df95f418dad242209492feb
BLAKE2b-256 checksum
How to use checksums
56780c2838f91458f53edfed5635b44ac4c0471bb6c911a18e602a6df7c33112
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
62272f56d12e7cc6c11c29952163156571a61a06ea1e70afb82e6b7a96d30d68
BLAKE2b-256 checksum
How to use checksums
0fcc04c2cd008621f50c41805d8da0ba534646629961956bd8f13eef0b7a41c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
0c1b4309d86a5cb7920b0745bd4636a2ea581abb44ff2dd09392ac8d136f4f16
BLAKE2b-256 checksum
How to use checksums
7b0af56210ac944fbe32d6325127ec7a9f5a553ca81f4cd75be0f2ddd449256f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

Download URL graphrecords-0.6.0-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
2e8f7a08579e084d451ce4a3537f22544873c68f3330075874c99e4017173400
BLAKE2b-256 checksum
How to use checksums
1d7e6858d2d93fb64864dd33b28f82c63398b3051e29f87ea35fe41e781251a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
d2e64c2ee61e79d0e69e518ae68c540f60560d79873b0b9c316100fb13485af6
BLAKE2b-256 checksum
How to use checksums
00cbcad5a27206b8bdf8f075f9ade6ac111e4c0d4df7d18e007b4738cefbb40c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
adecf4dc188dce06528808001d6ba621e31c558c6855e7a93f423f164f2a045a
BLAKE2b-256 checksum
How to use checksums
2b10144ba6e15ece8fe68f6bca42b84b5722d82ea1282e1aa2e369b2203755b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
e1a0d79c1f07ec3f720cb83e7cbba9a985923d5528e4f128871bfcee1542c6cd
BLAKE2b-256 checksum
How to use checksums
0ffa73f3abfce453ffb12939ac4c0e94fe812c0338d559e6384620c7a1dfee4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

Download URL graphrecords-0.6.0-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
2e9c9b2e36339a016e4b42e682eae73b1337e1e950c323318594c12adc1ef9ea
BLAKE2b-256 checksum
How to use checksums
e2b3b07cce1f52718433ac342f023ef20035ac3ea86457bd39465e8c4ac336db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
5eb41fb31379f486ab3789efbb97ba7cb0d0751337ac46e44b8e1178fbe220c8
BLAKE2b-256 checksum
How to use checksums
1de021f807c51a06e518c37b8a621f95dd0c3c508160bb88881548e3c8650c01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
4e6baf3bd350075e05a5a13261c75a8beea176c508dad32b9205515e6b1cf8ca
BLAKE2b-256 checksum
How to use checksums
4ab46397246b14e53af66f509acb21f171af16ce9e4f64d474d35aa66c38b3a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
bc9bbe612703475a9708169c62ab4a57edd04bb7e2a09ebdc066c11945a6da88
BLAKE2b-256 checksum
How to use checksums
7262cdab4f397a5d9550ad6ac0959ab3797aa657f9c1eff90a4342e6f74987c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
3d3f9896e6c37e95cb121a0ada35fe0c4285835b5ae85cf70878a8f333b1cf36
BLAKE2b-256 checksum
How to use checksums
0269dedbc98e5d845b2a908a28094349d8c6bfae795e6febfea845d7ea1430c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
7b9cae9bfa514bdf5912944e8372ca45e60e44e3a47412a7d41e7ecb0267245c
BLAKE2b-256 checksum
How to use checksums
c4a760e8a708573f20a2fe76bbf8ef9a7e92abfe8c8b839f5c995b88a14d53ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

Download URL graphrecords-0.6.0-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
50d67ca5258ef989f9a4a91a7a44ac76222f552c3a355a3b63b800b1a717bfc2
BLAKE2b-256 checksum
How to use checksums
6dc0d80f934dad9ed7c709e8439fde3b08d5588141255e04a0b4a1834661d305
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
c5d7aab73f26347f81000f321702ae75f236e1ae446c97b41bc691eb47409615
BLAKE2b-256 checksum
How to use checksums
2b110247db83bc31ef781c2b3a444e6566dd9e12c4cc4616f64fe6a067aed7c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
cc1c43ea771441dfee8e6aa9101f7017d600e45801d385a34a4a55c433027e70
BLAKE2b-256 checksum
How to use checksums
c5d39eef3a425a1da882014ba6c09427a9fb3b73d6499df6e446c15831308460
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
36fe910bb13e3680512e2a28019dcb1bf63b4f90e99a89af71b10708a4f62f30
BLAKE2b-256 checksum
How to use checksums
819d22d17d043fd83315b27996f9a643980bebf826d9aa4c94a10bfbf1275d45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-cp311-cp311-win_amd64.whl
Size 13.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
06a4a06e28e8fac8d34f852b6e72dedb1a65256a484d23fe12fa09e202d2c210
BLAKE2b-256 checksum
How to use checksums
fbc8310056354d65ae9532324673da5403bf86152a6eb38ddfe5d47f149303d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

Download URL graphrecords-0.6.0-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
6c8afc60e077ab33fd716a30330c9bf9a4695736b9105eb9a572350e3c486df0
BLAKE2b-256 checksum
How to use checksums
a397e1875fa271283a3e1650fb32422f23fe995b6c8f726667b51f3598072cb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
b82fa3e3f76de49790b8cd26a0231beced68d2753baba9b6a526cfc2d47d04a5
BLAKE2b-256 checksum
How to use checksums
fc9db655cf000b8216c48eb94e692561fe380b0561d6cefe01c9421ee4edcd74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
85cec29912755a46733b00421012e3b43a2b175adc0351f69c058be6c96a1b93
BLAKE2b-256 checksum
How to use checksums
214b293d1e2c3212e481922fe92b8e50eb44b2240dd1c73fabe348c8599b1ad2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
46f0a17ed53b77db843441efb4753389118353762e2ae7591eb2cc95422214b0
BLAKE2b-256 checksum
How to use checksums
31d047092115359aa2194394321e5f699ede1fff9e4bd5a6e5e7d6df7fb66c3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
26cfab42f71ee9ceffbd7db95abb30fe2539b47866cf68a6a25af676b444cac0
BLAKE2b-256 checksum
How to use checksums
af2b2e87ede7777610010f1253bb6a4db14491f023db0c9fb1b0b5df23c55560
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
8dd0b18111711bb450b570ffed5710235cee45f4590a0a607df75fefa957efe6
BLAKE2b-256 checksum
How to use checksums
47491516b60248d97cbbbdca6c7b59f5337e0344509bf7ef7d511adfdcbdc915
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
e7e0411050512497d89dff82f5d0cbb2c33184a11a8d1b62969f96738b9f5962
BLAKE2b-256 checksum
How to use checksums
297150672e64fbbfd6ce2e712b2ad0e3ff95280905f86c40fcb535a2b38dd353
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
b23a6a21dbfe57e62d21bae1186d28f6d34383bf5c8cf308b28269b2934eada4
BLAKE2b-256 checksum
How to use checksums
7a4a9b3c9237073894479a6e5c46e737fda05ee50fae355d09f28c3bd7a06c41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
4cf0e810e6d42eb25339374830d27551ee346e19bb60e8c0e66125e532ef3d46
BLAKE2b-256 checksum
How to use checksums
e056b2e35abb96a70dc21c05f98e8756c9ca96b467444dc67259dbfacf1b8ab1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
52866e2c238229cf50f66e7df47773655335ebae7bdbe7d7aab0017bc982b436
BLAKE2b-256 checksum
How to use checksums
ec60a2e2a829d9bd8469c49471a8a4c20515e292ba19dabbf0b5f7cd0b62f21b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
58426e45d73fe6c062ad6e2b52b52903fa0d72770ad0ade35612242d6ba74745
BLAKE2b-256 checksum
How to use checksums
8b960ce7525e88d8b0bbcb3f82b596cd958e91d4a3bbea1fa19daf15be64e982
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

Download URL graphrecords-0.6.0-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
091833f4fd12efa7f6d43190cb8acc0a707756764f570f2e8cb38220a2c2b294
BLAKE2b-256 checksum
How to use checksums
4c5ddc7760df44daa72f8208c9c4039171cd91c9068d503ded84575340f52b0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
6b89dc9243c7fd5e444877a476a5b7df52a8e440c7f3c31e843845c60d11a0ae
BLAKE2b-256 checksum
How to use checksums
b19d43a1cfde5c7adf77072e32498b9b9ca082ee72021317f035728daf84e7d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
a9d3b23ac84d7799eabc5e05a51d2c206f906027cf4624fc3b74c5a25a2f6139
BLAKE2b-256 checksum
How to use checksums
f42eb1c407447bf4fd6482b3eb5556c49d14f3e3d5e106d66f8c887f65000f51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
1ea8e3f3789455c3d2112945fc0006ba7195674ac12b9a753f386472e765dfcd
BLAKE2b-256 checksum
How to use checksums
d57ce76705c73dea7f1e05a852519fe76d6d710769452112d18c24fb0d9f4f41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
518d59c1b0da4dc9a7ee1943753e3729c64502cc7149dded5e5d4cffe52ce348
BLAKE2b-256 checksum
How to use checksums
3e32211917df5fdf0fad380de144e479d6d053804924bd0a5001ebe375314192
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
d847cfa381687eeb932367d36ab746d060bb2cbcf83174f84e9080fe39dfa676
BLAKE2b-256 checksum
How to use checksums
69455450c9b2574effed42b110e76ef00b56001616ab58fb5571f4b077ec8fc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
90b197a53f9134869d8323670a58aa66f89756281717472be3a57b1abca0489b
BLAKE2b-256 checksum
How to use checksums
5e33cc68d93321cd66c26756213384a5fa857aa6d34de98bdbccced3f8ac3e9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
2e4f4124023d6a84c1240d3661b4521bf50498bddbbb2e7555edeee66637266c
BLAKE2b-256 checksum
How to use checksums
9096082bcc300c823aeaa4ffb1ed0fc080f6c82375ddede750273e4824519f1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
79ac305f6d6161d95e6cc7596dd5796292f49d078f8dfa129e6399449e2715a3
BLAKE2b-256 checksum
How to use checksums
59a4dbc25587b39f2193854bb1d1d00991c8c881d9136686c148502e44e064eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
68cffbcbfa6344e918a899b67fb276a1930cc54b283c28926759dc1ea74b2379
BLAKE2b-256 checksum
How to use checksums
bcafefd041214c610380f1915853398b50a888fa494043e3b342d498f6b6a7f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.6.0-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
8b9c925cc5dfa5350c87212c76d0ce8c50806538931ed961cccc709afe8371bd
BLAKE2b-256 checksum
How to use checksums
66094d968dd43bf220be780046d3c60fd1ed03bb96bcb7fc8a96f1a62fc7b377
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release history Release notifications | RSS feed

0.6.1

66 release files

This release

0.6.0 This release

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