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.

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

import graphrecords as gr

# Add nodes as tuples: (id, {attributes})
record = gr.GraphRecord()
record.add_nodes(
    [
        ("alice", {"age": 30}),
        ("bob", {"age": 25}),
        ("carol", {"age": 35}),
    ],
    group="users",
)

record.add_nodes(
    [
        ("widget", {"price": 10.0}),
        ("gadget", {"price": 25.0}),
    ],
    group="products",
)

# Add edges as tuples: (source, target, {attributes})
record.add_edges(
    [
        ("alice", "widget", {"quantity": 1}),
        ("bob", "gadget", {"quantity": 2}),
        ("alice", "gadget", {"quantity": 1}),
    ],
    group="purchases",
)

You can also use Pandas or Polars DataFrames:

import pandas as pd

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

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

Accessing Data

# Get all nodes
record.nodes  # ['alice', 'bob', 'carol', 'widget', 'gadget']

# Get attributes of a node
record.node["alice"]  # {'age': 30}

# Get nodes in a group
record.nodes_in_group("users")  # ['alice', 'bob', 'carol']

# Get edges connected to a node
record.outgoing_edges("alice")  # [0, 2]

# Get edge attributes
record.edge[0]  # {'quantity': 1}

Query Engine

The query engine finds nodes and edges based on their attributes and relationships.

Queries are functions that receive an operand, apply conditions, and return results:

from graphrecords.querying import NodeOperand, NodeIndicesOperand

def users_over_25(node: NodeOperand) -> NodeIndicesOperand:
    node.in_group("users")
    node.attribute("age").greater_than(25)
    return node.index()

record.query_nodes(users_over_25)  # ['alice', 'carol']

Queries can follow relationships:

def users_who_bought_expensive_items(node: NodeOperand) -> NodeIndicesOperand:
    node.in_group("users")
    # Follow edges to products, check price
    node.neighbors().attribute("price").greater_than(20)
    return node.index()

record.query_nodes(users_who_bought_expensive_items)  # ['alice', 'bob']

Queries can aggregate:

from graphrecords.querying import NodeSingleValueWithoutIndexOperand

def average_user_age(node: NodeOperand) -> NodeSingleValueWithoutIndexOperand:
    node.in_group("users")
    return node.attribute("age").mean()

record.query_nodes(average_user_age)  # 30.0

See the Query Engine Guide for the full API.

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 Schema, GroupSchema
from graphrecords.datatype import Int, String

schema = Schema(
    groups={"users": GroupSchema(nodes={"age": Int(), "name": String()})}
)

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

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

See the Schema Guide for details.

Serialization

Save and load graphs using RON format:

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

Export to DataFrames:

dataframes = record.to_pandas()  # or record.to_polars()

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.5.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.5.0
File Size Uploaded
graphrecords-0.5.0.tar.gz 351.5 kB Details

Built distributions (wheels)

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

Total release size: 719.0 MB

Release files / graphrecords-0.5.0.tar.gz

Download URL graphrecords-0.5.0.tar.gz
Size 351.5 kB
Tags Source
SHA-256 checksum
How to use checksums
f9065cc412132fec95d2d5aaec325fd91b833d9531fda076d7071d4b42af5266
BLAKE2b-256 checksum
How to use checksums
6c70a5dbb5927859b9948eb562f8f69f4fc415010ef4306762a13900c853308c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-win_amd64.whl
Size 12.8 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
cced417b7025b124cfba6324e783ee5d43ca727f623b322489a4f86836c5d5b3
BLAKE2b-256 checksum
How to use checksums
c69b7d732cec3beeb3d7013fd12e3d589e451484ea2aaa8428c2789dd9287804
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-win32.whl
Size 10.3 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
a54ad552c2f50925e098dbe8c64bb5c851c5a8600793379cc7aa379fdcbd7b9e
BLAKE2b-256 checksum
How to use checksums
1b4d370670d0d03138774ff28b73f07e1590564a73bc0ffb02f23626056cff23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 11.4 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0ab4fe67289a7e2c4318d941ec4fb3b770d874bead91d82b353b038e490b7927
BLAKE2b-256 checksum
How to use checksums
9d2b3fa6b5b9c758d8ec70d824368fdd3ab99db28921bede78a29ac475c016a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-musllinux_1_2_i686.whl
Size 11.7 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
afba414674f32eb3605ca600a18f28fd5e738983fde44ca46f1c68abb6866cae
BLAKE2b-256 checksum
How to use checksums
2b37aa3c6947ca24f7848e762ae97422c40f5104d1539164c6f6e874d4c61f67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 10.3 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
8c47b2586afbd6a5c5c9fbad9520405bb15727ffe9cb5b9b6b34f22b70635add
BLAKE2b-256 checksum
How to use checksums
d26393702aeb88582e87d7aef22d3abf101363823c9a07fd7d448c46044d3e55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 10.8 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cb7c25bc9e4076c4775edc313d4556179eda4a77557e401e403761598c098e40
BLAKE2b-256 checksum
How to use checksums
7244b1514f4051f971e9752f4cd8b69b0b46cc86ab1282ddb1d1799ab2e7b888
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 11.1 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f205c53233451bd1eafbb2f967fea365909650c352394b0315a13a0c68edff39
BLAKE2b-256 checksum
How to use checksums
92dd08bd948bd1f17f8756c9627d33eafbcc2d6ae74391fe67b0021a95797a33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 12.3 MB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e2e8d329353747d26f0b50d74cc4df36e38aa24d6ce79f4ba4739e3eb9da0fe0
BLAKE2b-256 checksum
How to use checksums
d310fcb546879ef0f70208a6b18e9369340e5116d20a9a6e298a5e499d77a1c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Size 12.1 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
959d622ac26932185276db5aec05c2d8e5f753823f179d909863eede25a850e9
BLAKE2b-256 checksum
How to use checksums
9d6cd46f2078cc0c9ee21d27ea5945810efcda0b3fee47713b32a7782a1d3811
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.1 MB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
16db24c661d619f4b232554334542a383e7466a2f4a8e7d6945237b5af23bf77
BLAKE2b-256 checksum
How to use checksums
3203cae1b3115cc181eaea97b034a37ba6ef65b95c742c589d1f5bd78609c354
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 10.7 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9a7fe10ff430151398936ec97ace4b15bc451b566724a56dd1fdcefb47210f57
BLAKE2b-256 checksum
How to use checksums
f02c7bc38e2c82883f82b21bb1274e10501d14637399d76872b37a0433eb5e08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Size 9.8 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7b53ffcda3b9904d66ef9889e155e6bd0bd7898d0f9212ae19f7a5d8666a1dea
BLAKE2b-256 checksum
How to use checksums
80502a492e4076267dadc9054947e73dabc12a9fa3fc69ada1c07beda37636c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 10.3 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
08809d74c09e12cd9ad5c7e5df1a2a9941f4766e7fdbcad1f98f0fcc3fae5c0a
BLAKE2b-256 checksum
How to use checksums
6acbdb096b697880b15775b4d11b8f52549640fc1a5668f08bec205e3a52d51c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-win_amd64.whl
Size 12.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
2760e2e60676a84c35139d66dca73e7600c602d10c7d7fbf16612f8a2f1ab585
BLAKE2b-256 checksum
How to use checksums
ef11da9424fc021d55d8a6214eece79ae22c20b92c5f6c9241e77a65f20d375b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-win32.whl
Size 10.3 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
a6d947c3649a571fc650f0600e99ebdf369179028a11357f99bae2df61ceb052
BLAKE2b-256 checksum
How to use checksums
0e378b8f3f6affa62a25376c051920b8dffea1c1fa18ddb661f4a0fdb2074d28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 11.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
66e761e9d466e569f17a31f1d5a9be9e89ca287eea9cd052371df87d7372dc72
BLAKE2b-256 checksum
How to use checksums
9f938af499fdc12d6ea50226e546d1d6ab7722b32122eabdb2668e5d96dd1b1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Size 11.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
03a6f31a72309e31027cc03dc0cc1eea7e6dc858c521db1a6f8652ade5cfc52a
BLAKE2b-256 checksum
How to use checksums
115837222fac11a132f508c6611e46a79c0105599a490b25adde9fa10d25316d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 10.3 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
792432f31396bac476321265cfb093b6749b2237417f69939231db49d4dd61ee
BLAKE2b-256 checksum
How to use checksums
85449fbc290be2b4ac4ea7c8952b45c1b757ebc306a2dff3ad4f2aa9d1b2bb66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 10.8 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d20004fa97d31b76ce1a332ce56e0254b40913342901e62f78b2e8d6dc507319
BLAKE2b-256 checksum
How to use checksums
4f43a9290b710606b65a1ffb67399b285d50de89f07a7a082e93ff36e3dcf929
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

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

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

Download URL graphrecords-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 12.3 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8bace671b6c643b58797b94e616caea1e797783dae3fe54a09bc61bef3946460
BLAKE2b-256 checksum
How to use checksums
15ba944d410854a2aa9616b2ee91708d8dcb028fa8ae6339f008be40f39beebf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 12.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a2e01ca30aeb43e848c55c8ff81fe0c749dea11ed6df7aef0f57f44fefff7831
BLAKE2b-256 checksum
How to use checksums
97d84a16fed5bb3e7de7312a7406c39e57e810f326848362bfa4e3ed75449b9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.1 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c866f1a3dd4d74ef5964412b70b948b3f4413ccf427aa0bfeb01f2401df96605
BLAKE2b-256 checksum
How to use checksums
e423be054bc14bf1b7b2b10ec0498159a62d79d54c7dec98f9344d71de8c8b86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 10.7 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
18529008b1ed650456749f213f90feeafe0242983ee06dbf884d1f1fd1d2e8a2
BLAKE2b-256 checksum
How to use checksums
b0366fc96280df79727f6e2561dba5201550809564bcff5b0d7083af3280c8f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Size 9.8 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6e58f6d792a15bcde1b88bfbcf885812d0fb1f3cc36ee2444da6331a83a4bc93
BLAKE2b-256 checksum
How to use checksums
b10f2146ea663d2e7998713f8d3a43e38d014978ce2bde610ea471dac5c3f3b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 10.3 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
15312b824d4142df2e7555e9d8a10229ed09c4e384658b4e5f7206190fbd0591
BLAKE2b-256 checksum
How to use checksums
520d0e5b4cb0e911f0afde70b376e2bddeffaff2d2b73152512e23031cada636
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-win_amd64.whl
Size 12.8 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e7617e39a83501c286b48adc3e8d42a9e8639000ed199dc67fb7822aaad254b8
BLAKE2b-256 checksum
How to use checksums
8a0360442680d0a478b761aeb09e0ed668739ee77c52d86c9463107edd4395de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-win32.whl
Size 10.3 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
190426487269ad3e69e9d52ad8e3e6092f91dde192e66380aafb3ea89b7053e3
BLAKE2b-256 checksum
How to use checksums
48db70f527f1718eb3e2de3b9458457bde6d8b696a47178928b62824fd993c26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 11.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b75fffab2638a61168a7831ec8abc018cc6269c38972506b7b00fae049ccc612
BLAKE2b-256 checksum
How to use checksums
1b2731d6df080cdbe7c71908ea31826cdf0355edf52e25e365d411ea9e83dec3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Size 11.7 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
86a81bd6e0782d648c7c5bb8717267403f0b73f951f5259aa0f2484a797a010d
BLAKE2b-256 checksum
How to use checksums
da3635c08e4052e4b4b81e3d586118556e54f59455e4c030b788d7f95099bec3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 10.3 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
f0fd75390ba6ce78f630535581ff72fa3edff5e11785127675844414467bb60a
BLAKE2b-256 checksum
How to use checksums
3485899a31ffa6cbb130945b8dea75f38df5f9f4a01a7070a5a77e0bda313d78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 10.8 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4d150c44aa2b47ec8a7a1a5f8832748932a1aa5d243d3845e3a818d52f375576
BLAKE2b-256 checksum
How to use checksums
09f2501574fbfa82ea153c830f2bff2acf3b335cadfa0e20a5eec6551986f8a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 11.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2fdfb3b88ff9876816226ebe7ca234100892cdcec9d7a1d29542d136b9f60a4b
BLAKE2b-256 checksum
How to use checksums
1c2e4eee0a07ab28f332b37ec4e84aead7c5ae87fb9ebd298037f771c3a7d898
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 12.3 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cbd8dc330c4c52e7eb9066d7f881dd79ffd0c9e3ccff155641264b4ec789183d
BLAKE2b-256 checksum
How to use checksums
7e0ed41d7b7b32201ff042ffa4661929067ccde15e19578a2d93b9fdec75cc7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 12.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
7913119f744fbf05bb120c6e36cf7dede6a237ac14bcf0f0bb21867052c0a5db
BLAKE2b-256 checksum
How to use checksums
1e6801c7448c19f48c8629f67937c1560780df404dd1b314c59f4868dd8f4804
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.1 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
4d80d7c962736cf02cb1da2d02e146cd0983f0a5712d6d3020db043e0193cab3
BLAKE2b-256 checksum
How to use checksums
eb23c305f643befec840c5dd1964cc56e85872a34a4dc0d530fea28c071c3ec8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 10.7 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0e212fbb9fd6fd629a31587af4a9e1d472eb9e4dd5dc489bc54f0238b563218f
BLAKE2b-256 checksum
How to use checksums
94d1da97beb174bc1e2fc72b07fab001045cc5025860e5db87a5ba192e76c149
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Size 9.8 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fc96a81070345f5a06d984ef1f592769980cd8e4f48a6cdd69c28893b826cea4
BLAKE2b-256 checksum
How to use checksums
9c171d2a82ec6da9696601c2b4ab84fc6657e0312b4e347fbc7a7bfc4ee59f5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 10.3 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
781c34d238c06f377bd2325977e4df9b813b81b3a64a955bdd4cea923b84d499
BLAKE2b-256 checksum
How to use checksums
151c058c6f7491c83ffd58940d6e4aeae8a051ba0c9c2920f45c4b6003f48240
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-win_amd64.whl
Size 12.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0d2657bee3c510e3012b63d07c2ab5ddf49496b3328a43874439958674e7ca06
BLAKE2b-256 checksum
How to use checksums
dd2dc4031dedf5df455931104c8e9413d65382bdb09d68b366721ded2742fdec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-win32.whl
Size 10.3 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
82eac95962f2d9a2aeb45264de7771818eba1c13aa8f6fae6de65427714e2966
BLAKE2b-256 checksum
How to use checksums
10f79086cae69b0ff94323f7e7174fe916917e548880631cf3ce97bba19402fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 11.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cfa86376582eb18282d65c66372baaa379e93ca872428c6bf8c24e90a626dd57
BLAKE2b-256 checksum
How to use checksums
5987f3fdbb5796294dd894560a84b88c3dab6510ca8bfbfa2dc10e96eec73249
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Size 11.7 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d8d7a911bd7723cc2e0858bfa9162bc81f362ecea05f1229372d124ab3d9fe1b
BLAKE2b-256 checksum
How to use checksums
4f158869329159df8cae34d89786e136b629fed7299c9619ab73c976fa0f7038
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 10.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
f8415608f6e872d8b95d1ff813cb42ebac73e641aabff60b1815c1c992e1c80e
BLAKE2b-256 checksum
How to use checksums
02b35207aa029f69b49badccfe2b975e4e2e4a312d1f71ecac257895d2c37720
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 10.9 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7a126865031240d829a08c2a810e374c2c1dec4886a34812512aefde0e7be2a2
BLAKE2b-256 checksum
How to use checksums
a3c2fb7ac730095ae1d71ba083f75c3f890ff40663b1006a392803b57174bbbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 11.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4f03940ffaa10eacd10dfe892deb492d1c4d6e03a65cfbfeab2ba8ce019cdef3
BLAKE2b-256 checksum
How to use checksums
f6dcc5e73ac683803100caef1738d3db9ff3c35ee44c743cf5467dddb496f699
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

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

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

Download URL graphrecords-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 12.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ef2a2e60ae61b6a5aa6d4e62b05f25ab61ba037ec1bb4272c5528a1e3e7e3660
BLAKE2b-256 checksum
How to use checksums
76797a123830d837e493bb87c3e9e83e4843efe536d5f1fb5be47d0f7054c1ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.1 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d4378e07f89dd4701ff2bd132e796261b37d2528aafd8c006b5272b2383648a1
BLAKE2b-256 checksum
How to use checksums
9d62b1fddca8a44bf644ee19dd046b12f16b2ab3ec64fd404be9649a21d726c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 10.7 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
83db9183c72a924189d244afac369a8c60232e9f782872082c7745bbec790822
BLAKE2b-256 checksum
How to use checksums
054f6521f47b67c256356752a90b9832cfea6c77eaec5a9618393ac14ce36eb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Size 9.9 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1c4fe07059c3f008da63e5262716f8cb6910fc9a8324669d95454fcba4a3050e
BLAKE2b-256 checksum
How to use checksums
f6cd9ffbf288c9295a2012d1225713e66f02c18a84554cb96682000ffc082060
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 10.2 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f4cc4b9f57371a0efa0ac349cca7a09239bcbe43fca2a20bb09c7704da2d5075
BLAKE2b-256 checksum
How to use checksums
390c57cb2ee4b05e7d5f23f0a2b52de804d8389d4eb440c28bdfb1b818794daf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-win_amd64.whl
Size 12.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
75dff90bbf9ba0b97a5198ce09ec08f26dfcfbaf34750a766d2391e673046d2c
BLAKE2b-256 checksum
How to use checksums
e647dba306c24ddb8f275e744b55abc4b9dd620383245a179b24a0b57374256d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-win32.whl
Size 10.3 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
e10004da41412026fe16be35e2e07d3c7f4ce48b5fe37e7c913c434b22cd21c8
BLAKE2b-256 checksum
How to use checksums
c5aec5845e52c7a9a4206af4c101a663ebe22752d16ddc668c3ece1f58ff2597
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 11.4 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6c45bbe32db13bc68ff8f50b0964e6462ad8f150102cdb6e159099b31a7996a2
BLAKE2b-256 checksum
How to use checksums
60642fb6c9916facafcff396381dae3a2bdc137e0667786dafeb251aa5529ab5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Size 11.7 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1826e331e89dd33d804ce633e2ce057cb19eeec31698532907e6685c80ca3f7a
BLAKE2b-256 checksum
How to use checksums
fc692187b695bb9e93520cfcac071a2f861465d54b73a88161fde95bf8ceb12b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Size 10.3 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
82c600b182742024c2027e503c51a6f8d0d8fcba1554300f966695aa5f49d9f8
BLAKE2b-256 checksum
How to use checksums
3cc169b793eb8be3478bb2b446808ea68067fc8881332eff47181b7caada2796
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 10.9 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0e67a51fd5360f06b49ea3e3fbf641782a6bc246c51e5ab691e907a591e8b10f
BLAKE2b-256 checksum
How to use checksums
f87faeb997f8fc88f381ffca4ba0ec75343b7fcad2c1aa0bfe478953ada73f2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 11.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9f18caaed3b33f23d95050177f068b2f2bd41c5aa910156ec2e992b63bab147e
BLAKE2b-256 checksum
How to use checksums
7e7e8e59776a88e56e761a693fc215f399aab42ec36005e767827ce2a503577b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

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

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

Download URL graphrecords-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 12.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8a164c7c917041e11337ad19c9f07d59f8cc9b0d764cb495d79bc860cc9f30e0
BLAKE2b-256 checksum
How to use checksums
df8d090a5e22b653d1602b0486e2780949050de5cdc10a47748c8f410cac85e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 10.1 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
033bf7e4d0748acf17ec3d0e2e7851dd2f37da497e6ac350d44047c79ac39312
BLAKE2b-256 checksum
How to use checksums
5c09d6aecf27eb0390a4ff34ecaac2a848fe0aff043c97fb55e5c81dc317b139
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 10.7 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fdb2bd811f8536c4053571055f8012f7c59305c3797cafe2e48fed69493c89c6
BLAKE2b-256 checksum
How to use checksums
753edac07d2461a289faf74a2bbdf5b8cfa311eb337dc7d1a7df93c1a3e7e1b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Size 9.9 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a235e44559111475667f14e9076855e69804e1c85b3953b5e4e2d84a6a34cba7
BLAKE2b-256 checksum
How to use checksums
9354c9c48b832b679f4bd76f18843ea50e3cfcf11e0527c397972c4ce76159c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL graphrecords-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 10.2 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8560357ab40a5f55da2fd1ebd02e19454176e538441a16cc16fec337edd85100
BLAKE2b-256 checksum
How to use checksums
52fdf0ff1a26e3568d99b94bb10d09d82dc3443be4aed4e8e6cc47b0870a2177
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release history Release notifications | RSS feed

0.6.1

66 release files

0.6.0

66 release files

This release

0.5.0 This release

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