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(Plugin):
    def pre_add_nodes(self, record, addition):
        print(f"adding {len(addition.batch)} nodes")


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

Hooks exist for every change (pre_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 change replaces it, and returning a list of changes replaces it with several (an empty list drops it). The post_* hooks observe the records before and after together with the applied change, 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.7.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.7.0
File Size Uploaded
graphrecords-0.7.0.tar.gz 443.1 kB Details

Built distributions (wheels)

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

Total release size: 778.7 MB

Release files / graphrecords-0.7.0.tar.gz

Download URL graphrecords-0.7.0.tar.gz
Size 443.1 kB
Tags Source
SHA-256 checksum
How to use checksums
c637ba27818697b81ba42ca59551fc82edc0098d25ccad52cc434353ba8f02d3
BLAKE2b-256 checksum
How to use checksums
018553d90fa8a43e33c8fc18b4008ff861fb531db61a9a0f9ec19c3744e3bc12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

Download URL graphrecords-0.7.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
55d9fb90a424f097f5264d30d42fff50282f4a7a58d1f895fcab6a9bb05fc218
BLAKE2b-256 checksum
How to use checksums
17b80d25b2c99e287b4b56a37c47cacdba3a7615a7951f19693ba19f0214a98f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Download URL graphrecords-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 11.5 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0c3e1575dc3330d81d7ecd42f2284533a5932c34e55745be33a30eb31999065e
BLAKE2b-256 checksum
How to use checksums
14485cb6f7d4836503c9c0c72444893820265e8149fdd14ec593484a9ba91c09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Download URL graphrecords-0.7.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
112f8a123c96bb72973d7f16d456854d4261689e0359c1898be28a9390d15cae
BLAKE2b-256 checksum
How to use checksums
23c83d1bcf3540a85376fbbffad4e7aa99e6097f3df2496522ace3c028ee6b89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

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

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

Download URL graphrecords-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Size 10.6 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2b5dc232e39ac5116a1e8c8852927612ca1d7b1cb455191947692c48b6d20a2a
BLAKE2b-256 checksum
How to use checksums
6fe6838e4e8bd6bedece6be69ce3c1a05ad25b1c33e7941856a0a6c9d21149ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.7.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
8095afe33a21f8b73e9668c94100298c9cf871cbaea52e2ddb60a2ab37212eb3
BLAKE2b-256 checksum
How to use checksums
21797245a959d7355dee8ab6f51443e0b4ec0960c96bd58bd2b7e70a843f2b74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

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

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

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

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

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

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

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

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

Download URL graphrecords-0.7.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
23305ed3bc2ab7e1dd31b83785d5f0d02bc9c2870eac4d85f2474d4a3d10f8ea
BLAKE2b-256 checksum
How to use checksums
8ec54cbad4d17e4c4bfcfd7143b6960fa7396fc6af25f28575d51e1382d63b06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

Download URL graphrecords-0.7.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
842bbf5116ca3003785e4269e8fd7985bb3330c7da740a66349b44e0952a3220
BLAKE2b-256 checksum
How to use checksums
5e35a82ef13a7ab67d9f4c32137209a05867a0066e66f017d78b65dd170f0446
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 11.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
dfdb7cbb7bb774cb30df4a672f915cabb0150774b4261a270f39a6ad9fe10ec7
BLAKE2b-256 checksum
How to use checksums
2fcc387d3f9418e449de0a09f2008f8c2e8320d0ac4284642fe56c7917d3b5fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

Download URL graphrecords-0.7.0-cp310-cp310-win_amd64.whl
Size 13.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4a21a3361db386680812b9ff49ea3ec6a75466a63d69f7420a4a52557f846880
BLAKE2b-256 checksum
How to use checksums
1abf355e69a811d5764352fb70601440cab78de6656f048f3d85fbd24a66ef47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

Download URL graphrecords-0.7.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
938ae5ad400f8a33d805776d99b7d6e88839a94177f9c2f3b42b634b415600ca
BLAKE2b-256 checksum
How to use checksums
5c31f7bbcb6a47a09b0c2e58ecb592348bcf5ce0d2fe8e2ce43b11c1d552bbd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

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

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

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

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

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

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

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

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

Download URL graphrecords-0.7.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
69211d09929c4b171297e0d690f72e52d9c296cd50f0db39c2159bd96d778063
BLAKE2b-256 checksum
How to use checksums
424f11d1e81c052ec5e98d3e314032d6a7a0d9521627e459efed55d6695124b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

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

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

Download URL graphrecords-0.7.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
051e052c51fdd143dda4bbb9553dda33cc29f14961d0d5328d424d31ce266be7
BLAKE2b-256 checksum
How to use checksums
319ee116141278bbd0b0a70ded5e1ed6216c3bbc98efb76715aba85c213ad9e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

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

Download URL graphrecords-0.7.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
6b9a90e141ef083bf04a496eb2c64a0cb68c26be35037891dbe1d3b54c382d6f
BLAKE2b-256 checksum
How to use checksums
cf6484744b170aadf1351a8fd4d81115225d71398efa0fb09d531c0a3407b325
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.7.0 This release

66 release files

0.6.1

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