Skip to main content

High-performance graph-based data records for Python

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graphrecords-0.4.1.tar.gz (232.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

graphrecords-0.4.1-cp314-cp314-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.14Windows x86-64

graphrecords-0.4.1-cp314-cp314-win32.whl (8.1 MB view details)

Uploaded CPython 3.14Windows x86

graphrecords-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

graphrecords-0.4.1-cp314-cp314-musllinux_1_2_i686.whl (11.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

graphrecords-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

graphrecords-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

graphrecords-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

graphrecords-0.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

graphrecords-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (11.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

graphrecords-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

graphrecords-0.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

graphrecords-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (9.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

graphrecords-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

graphrecords-0.4.1-cp313-cp313-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.13Windows x86-64

graphrecords-0.4.1-cp313-cp313-win32.whl (8.1 MB view details)

Uploaded CPython 3.13Windows x86

graphrecords-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

graphrecords-0.4.1-cp313-cp313-musllinux_1_2_i686.whl (11.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

graphrecords-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

graphrecords-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

graphrecords-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

graphrecords-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

graphrecords-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (11.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

graphrecords-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

graphrecords-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

graphrecords-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (9.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

graphrecords-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

graphrecords-0.4.1-cp312-cp312-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.12Windows x86-64

graphrecords-0.4.1-cp312-cp312-win32.whl (8.1 MB view details)

Uploaded CPython 3.12Windows x86

graphrecords-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

graphrecords-0.4.1-cp312-cp312-musllinux_1_2_i686.whl (11.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

graphrecords-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

graphrecords-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

graphrecords-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

graphrecords-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

graphrecords-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (11.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

graphrecords-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

graphrecords-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

graphrecords-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (9.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

graphrecords-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

graphrecords-0.4.1-cp311-cp311-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.11Windows x86-64

graphrecords-0.4.1-cp311-cp311-win32.whl (8.1 MB view details)

Uploaded CPython 3.11Windows x86

graphrecords-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

graphrecords-0.4.1-cp311-cp311-musllinux_1_2_i686.whl (11.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

graphrecords-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

graphrecords-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

graphrecords-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

graphrecords-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

graphrecords-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (11.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

graphrecords-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

graphrecords-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

graphrecords-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (9.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

graphrecords-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

graphrecords-0.4.1-cp310-cp310-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.10Windows x86-64

graphrecords-0.4.1-cp310-cp310-win32.whl (8.1 MB view details)

Uploaded CPython 3.10Windows x86

graphrecords-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

graphrecords-0.4.1-cp310-cp310-musllinux_1_2_i686.whl (11.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

graphrecords-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

graphrecords-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

graphrecords-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

graphrecords-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

graphrecords-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (11.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

graphrecords-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

graphrecords-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

graphrecords-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (9.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

graphrecords-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file graphrecords-0.4.1.tar.gz.

File metadata

  • Download URL: graphrecords-0.4.1.tar.gz
  • Upload date:
  • Size: 232.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for graphrecords-0.4.1.tar.gz
Algorithm Hash digest
SHA256 a27a9eaec9b0439639a19e744dc3a6e9604a48b784051e626dc6e0c5322a8527
MD5 ecb9274f6776a6866c8fd2a7f7f9d2f2
BLAKE2b-256 876673690114d6146298eb290c2a41868688a89fb833b6caa712352d710089ad

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d5b9511a16dae73138d142bd81d243475b5c262e3c1728326b0c110582e553b1
MD5 ab82b83ed182c21d14c88e41b46675e7
BLAKE2b-256 6ab8a0afea9e72270763fde287fc052a4ab3ecd5c92a3219dde0d95fade029a5

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 392ee1eea0460636fed48c3e2f3d67f928cb9d0498411ee0fe63c7e24bb89dfe
MD5 722be5b8170470670aead82708951021
BLAKE2b-256 6bd5d3b9b6eccbf051fd79bc7f15cfb50b85dc7b0b99430d6bb0a0c18bac2fdf

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6e8a268d712a141f9dfd107975c8309a6baa03f41ac17f26690d3af8cc1d207
MD5 48470b72d8e00a76563b47db208c4cc5
BLAKE2b-256 b7d3fead4285f8986b425d7b4dd2ea47b7b0d28bc85fcc656e411d5741417606

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 350b607c95893ea5457a93b04a6182edb7f26bbf89354c1cce972ebe6f309dd6
MD5 02a98f7dbe36dc1aed2072be41125a60
BLAKE2b-256 75253bf6a44105c4c1ece67c91351a84bff19362351be21b4af03581751042af

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff2f117042cb608f0a27354a5790cafc303347f184d4281b634c0f66579082bd
MD5 f479678f0079c865cc0fcfb6fd18f320
BLAKE2b-256 d50e44cba26640cc15ab7ea559fdb70ee1d543d6bcc6368500816f1ab890f6c7

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b11e8d9334f576789d812fa319ef6fc5a2daf5a9cd22d2732b262de4626165b7
MD5 4d41fcc88f354a7a1526d5f0fb5e14a0
BLAKE2b-256 d8103365651c553d92aa9692b9aa5f02f40d7d707de418b64233bb784a5827a2

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61b64da42e8a9944b28484e10dc1dd96e7fb876f3554748352f666df78a41cdb
MD5 52d9aab4e6d108c7f04026c0f95310a7
BLAKE2b-256 1d3ac6693f7568f9d95cf0b01c8af6f21e45c8346493ba027cf93c70c3993b7d

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fedf89c78ab6128833367c5816d2a7ceacf7b691a4bb511f50f398b4d775031
MD5 880e676842f069ccb16d9943d3f796b0
BLAKE2b-256 eecd011abac8eac18e28a246e0ee1401b860d9f17394d9993959f56c105e7d24

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cba8f8069bfe3c5ef119c3ea44db7031e6d727e98b7c652c551f621cccb4a704
MD5 5b790de4676fd905c4802c0923ac4577
BLAKE2b-256 22783d75923c9121ff16e3dfd5e270e4c54ab9977c073b95c92e03defdc243f6

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6459afdc3ce17211e1ac12afb9a29b1747ae22bab515d05039d441905214277
MD5 9168f32058e67d74bfb209e05f7c0b5e
BLAKE2b-256 985218efd34df9559b7e4a5ba5a6223a59094753ecd3d111151446e853be8255

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30c6341963ed258583b9d73b505fbd08a3f463d1a9baa1742a1eef6b47361d66
MD5 f4ffe3c23a075cbc3cc265a2cbd4953d
BLAKE2b-256 e723e90da4d0bc11fc2608359cc1e27c9d0d9e03b79391c924d966183b28ee78

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4d2a8071ae0d256e7d6d6b6afea462ff34a4a02fc3804a385b146fa34695582
MD5 2a40353a4456abcc495ad5081386e5a4
BLAKE2b-256 92891dc7471f9a6546a4f1219e8c288d841b352e0d5e8ee4146549b8be21273b

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d50aab4fbd45e284ce14fc9791ee7bc9c5bd0a744d133c8df453018060c4ea16
MD5 01c94782a8b29977e21e037943d8e8c6
BLAKE2b-256 e6f7577e4d3666c7801946f31b9c513337bc800a73a3bb20a293ec26eb87f0c4

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5cea11279c76c533e338502a0315d07011527edbcde69bff0080aacd54da8023
MD5 fb7494d788f02d90668f7c074f82e4f7
BLAKE2b-256 08192d38166dfb5f32bef73514099bff69e593d620f050714a91aab6b078e857

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5b27c8483589aa6e9fec41559ef950d22a27a117fc057c726c4f44d9b8276386
MD5 104b02985e059a6172cd51118c3374cb
BLAKE2b-256 3a0fffc5db1f082f181540c42a12bbb604b547bb4d261f54cd87966b2ae9ef21

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cf686488f145141ef03b871f684a5e47a770163452fdd8fed76283f653daaa4
MD5 c888bcedf94f5164bb47c586ec5f3ed8
BLAKE2b-256 11dbce79c11fd9d1f43f80908c4798e35952b31f71aab354c175fa3529e58b22

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c525c0cdd0160361e337c2bc9127a48ea5e8078ee1f96d4712a18e1e594c8068
MD5 36a316482af02b7cf37bdc4547936a4f
BLAKE2b-256 e1570e60d039c314280a995e3910dc1848c8dad5c47179af365000ca2696f120

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebdc7dd43856aee53e7cf973b794595b5f5562033419e09342ee088a67a4a6ca
MD5 dc75adc69219352eaae3e8b14510ebda
BLAKE2b-256 6b4eee91cda04e544574af614eac6cf4e8470e5c0a0ae3ba14110e32c450f536

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fc2f27363f9beb179d2d3cdd3687bdfb9edb83b003983b6507bf42537cb1713
MD5 2d7926a9bac91d983dbf78ffd87ad2d3
BLAKE2b-256 1c2723f039d45d8bb39ab8a52e5d1d140670765f517f7018b9bd0718d7914e3d

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c1a711980f44de439e8ba069a7d8e63f4438aa10bb3754e5cf16484d3c338f4
MD5 4e78e4121537c9e41e7de9de95d2558a
BLAKE2b-256 9ff6f345b17ff5fd10e809094c5c4384aa87d10637016f6da6754215f585eb42

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 113f91bfd522cd94b407f159ef31aa790a16833131307a158c6e1bfb67f3ccd9
MD5 b9d8e37c71f660ee8847bcd7465f6a77
BLAKE2b-256 766c6ad32676742e4b0682f78fa119c7777587c993e10dd6200c7948623be025

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6f7f22eabd18f9e8f5d544f9bcc13ec98f5cf8793be38f3ecbea5dd707bbceb
MD5 b6152f213653238f6120acf2878e60c6
BLAKE2b-256 7938aceca3c70c629dc5e95fde9b685452acb0f9896843c4e737cdd726485c04

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42548f8f8b89553195dfecaac026eb560ebffbf8e005eefa0127af15e4f490e9
MD5 672b701c11153d2da00b468531c51e03
BLAKE2b-256 bfd22dd452c322d2db19d08cbfdc8bb9e4fd2bdac89c7f1d50c0672e0170fa36

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26108dada456ab75f68f4be635f3f849a36149819ef2ac2834481477b7a7fa08
MD5 d102141338a7ed13002a8fe767ed6b07
BLAKE2b-256 c68ce90c5bf4460e98b8d8a488156d71c2147319bd9a69c9c9cd504cf4f483e6

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de47bc5a4d0459a9834d85c0c023e5e8b0ac96ddaacd2f0bcdbb33420a7efd79
MD5 4c9391a3e1a73434fc81764ac58ffbe4
BLAKE2b-256 d3812aa3f56c764dc76df2027e31dfb3f06ee35a4d5d0fb6281efd0c16a92bb1

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55e86554355f4ffa82acbada7ade934532222184d82cbae15da059f3528d386f
MD5 597da96775f6d3b3fc44e1bdad289fac
BLAKE2b-256 f19707cafad594d7cf1f4f93d093bb3fe44a705c976d439badc11a7f73ec4e9f

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 de2fcc909d8c9d90a8d96f5834f66980f5983b44ca2c4b18a6d5aa983b487c9e
MD5 a0a86bdf04a150a755b9fcfd985fd6b7
BLAKE2b-256 207071ec0402624b2f66a550193674622c8add0e50be6464d7e3457733a93750

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 86fc4d03cc7f98b33bf45c7b97d0bd6a6588c0042849c125811919b676ea03c4
MD5 17b49d8b2e9267a147bc9790f61cc1eb
BLAKE2b-256 c51d6c3243121955aa7c01dbe497d2feba894a46e33798c3dc1f5a0d57d0d7e9

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3cd897cfe75861ba838e2578bc1b48a9e3e8bf7049fc715830d54ac932a38e5
MD5 a16b80bbadeff6ecde2612c4413ba7a0
BLAKE2b-256 e8b8c1d43d882318b3dc8181f81fe3c423ce313c06a7cdc4ace11e95ada03f01

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d8e7c018f3e9e84471f3e12d55a40776a4f122d54424d7f1f23323493cffab3
MD5 7deac4f4dd77d75ca37d5aa38f470b4a
BLAKE2b-256 f9ef149a7de0aef8f5c9a360666d2127ffd7e773a4c1db76ba90119999cdc146

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e05d265bb859fb031e24397257c8c021991a6841f41f2ae746cba87555a3dc9
MD5 2c62575b291a77d91113f0bd81a36739
BLAKE2b-256 2ec1bc9e67982eac5867c22fef2ea20fe462572980a40644bbb3ce74487ac453

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78052baafaf23ffebf5564df2748d953ae858127198b54964932413b4fd2bd0f
MD5 2712fb7220e7866d75432de81c664d96
BLAKE2b-256 93d9cfa25bce4239b4bf4b98f49cb6db9e85b068cbab04b877138a55c6865853

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 278db1f0eaf583932a415ad589c3c3f6b82bb7d98935619d929ab64c7054b469
MD5 cfc815fd53ac36097fb6a2cdecdd8dd8
BLAKE2b-256 b3bb5c5061b010ad80a0aadf5dc5a1fd1f52255090725344da24069961c4ebef

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab0e64ac1f27ba3af99f582ec14dd7c4137378c334c3df2ba9163008abd73eb8
MD5 db0e40e924d4685ff37d8d8fa94883d5
BLAKE2b-256 6ebd06351460599525ecd0e163639a680b1059fa6f843ca27dc6748686ac39bc

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f70f51e971bd707c39af6233c9396c41dba5167ec41b90469b9c3f40b0fb2ed
MD5 f23db685fd1733c63c21b655cf32eed7
BLAKE2b-256 2c0bb8e4e7be8593e898c687669f11fa85fda7b4e81f1733cb53ca7c2e1ef16a

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1fed6ec5b2bb2e9304da5796677128c22d51cb1ae288206373dfccd50753c7e7
MD5 fe91b1eca437c27f6126f028ae06ad5e
BLAKE2b-256 8e8b122b0d2252045d988f043ff62972ebde81786f8cd552337abac1265171d9

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a9ad6e3cb4b21fb32e03b1b05ab1e65afe94be882bdbbb21b3f0b419d18ae2a
MD5 4dcbee7d8030e6725eb82a505fe5d589
BLAKE2b-256 c8038cd9c4bce1dfb13e2026b4a6b57b09836c54c2bea9660eb69c76dbb3d285

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18e87cf7eefc7d4de8b811e591d82dfad5aa6866dc77a6da54825b0f27573f59
MD5 e4b5c1a89e7ae40a4fbbb7831df3299e
BLAKE2b-256 d3f49576879b19699bb94f37e47bdddaf494f383768dbcd5d7ae3c297a548ba8

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f32890329018c9efdfa1d3dab2c66e1daa9045c7d59a8efc508cffe6b0c8fcf
MD5 83864b2377b6e303893eb25aed81f809
BLAKE2b-256 d3aa33adc608516bb92870932ec2206a354642338b15498d7faad7599ad98198

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a745479f95485e5bdb35e015b35ca049022a7d722fd416128ff5b9f27147764
MD5 24fb17e0197d26505d0fc36433d6ffa6
BLAKE2b-256 1b89436a748ca194c2fa0a4a19f30c356c61260fd003fb5f51d0988a1f311cac

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 398f0798b023bb6d21980103f4464411cd567bb295fea17f495616ec6aed9091
MD5 6d1da6200c11c9c1928fd625ecf35dd9
BLAKE2b-256 995d8bde1198c1285b4d7e29dc73e415ff41f08698e1c74fd372a4c60ac876c9

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f4dc2a17bf818f18aa8f3938a84dc7c775816a39a75b31972c35069db015b17
MD5 aea9046cbe78cf8a2c6a8162ba341205
BLAKE2b-256 a1568a13accb55c3268a6526f2e898692bfabad0a5e754aad71a065129336152

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cbe58ae1babf4d0716ea7f449a97d7f7b881257a953b97aaa95a21b64cea0dc
MD5 4685ac8a96ea541be293bc51dc8f4dd7
BLAKE2b-256 079d49cf756de9780606f6043b624b0b86c894b1b2cd4f3ea74afb58f3cb2322

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e114de0ba39cae262318132b158493e9332ca34cc964ee70f2604f0516d3b2bc
MD5 1b0939cefa00adfa34ba5ccbccff5d22
BLAKE2b-256 ca8b366b553b55b8db007a2a2c271a6a5b347f4dfe1920b4e03ea10f3c740870

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dd54e00f474c3d1cf393dbc11fb63ff219253900691b6603903d28c28bc97b7
MD5 1d8a2872ee0f458c699d3424e8dd37b1
BLAKE2b-256 c4a1791579026b08a3f5519d3aa4b9a14210992a408b158064b515a8e3fa1203

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 783c2913953249532d254b6e5b48dbbabb51809ea98104f9156299edf823a928
MD5 08ac43a0918cb30bc64e2cde37765f91
BLAKE2b-256 347617bd2991357be94e0c0eb9c18db0149af0d1e71b124bc31afc1ed9329b2a

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 120e4566e47066be066aedd392495ac4c25a2c413fb3bc8196e5c11a551c6a2f
MD5 92e65051b569a7c7571d299acb384bdd
BLAKE2b-256 235324d0531c50e1c4a5e1efd2ed980efbe429eddc951486731acb038c21c57d

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ab749af76c6bb931e5f82a307411da2b75bb50a120f73173e823fbd810418d5
MD5 05b76c8e36f84c3bd2f348f22f1db1d0
BLAKE2b-256 2107f96f91351d8d7bb605a3697792d3b40fe6a99a08adc01c25b962619f8f6e

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a24fd26bf7cedb13fe523caf8d99430753fb4ed3d4b042a6aa7677e4de41c382
MD5 37c0546c9854130eadc14fec9530e2cb
BLAKE2b-256 23a6e7fc0b1fcac73180b91772d23320aaa0c0c278276c9bcb0a6a48e769cc39

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27df3559ea0fa47c732353d6ec85b936f613f8ae7f112d10f9e728e318d3420a
MD5 9eb938fba3758dca5525665f6d1587d6
BLAKE2b-256 6d6bcdeb88442ebc8b352cae6d72b2c2ca12e4a71cc1d49426839b73c25a6024

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fae4b50ea51351a72647a40cf2d7bce078747e2cbe0849ccc8612f078b728e5
MD5 4e1ada8c923384e99bdece6bd1637c10
BLAKE2b-256 887b9573e91c263e411b571818f1e602a94b5ef7986b1fe3853a72df31accdc2

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a9d4c74bb5b36f89ba36d9c47ab8135ccac386201ab1adb0727c0a895af3526
MD5 7a1099988300094ce9c82b12ca7b2813
BLAKE2b-256 0e0285440f68cd279674e5e08fd40c9a4008bd5c5094a34e5ced5c0a57e644ea

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 26dfcc1d45e0467ccaa4839487cb9bb2b0bf319cd7443c39879cbce8b169f40e
MD5 a84234c346147e0ae23da7ae91e1b65d
BLAKE2b-256 4e8127dfa3815057f2742fd3466a91673e2735475bb039561b7a647f4327bc5c

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b8477949907a4dfb440497fb27f2103ee2c1b5c13f77dda48c724bc1de278a30
MD5 c01d94bd874a1f4274f6fd543e288cf4
BLAKE2b-256 a5626539fdaad49065e9993514658957c7fb43326de4921ff4d115f63a44585b

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5de699b1f2cf1afe12985340ed134c1bab323a46b2a4eaf4f0871f05244c66a
MD5 f39a1a273347be1f6b92b5dcc6daa4cc
BLAKE2b-256 e65d62d42cd25f6847281acb01160d4ebbe2003cd533bf84e925597aca5dfeb6

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c9229c9c564491beb1186544e5a3ebebad61ff9554080e48b08a2a6915d5127
MD5 cfdbcc92b833b00eeb58b2c108f686bf
BLAKE2b-256 2cb7d05f796d689a1bdac2e126b49bc77715063bf4d04f101e5ab4c7a43ec9f0

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae70c599570bd3bbe5f43d8334e98dbd10c7b1af6353c4a0ff0b754ae325973c
MD5 be54a6b0a0f6996bd0f2f69bb789351a
BLAKE2b-256 5e6997deccde50ddf358600429e77bd660a2f8d5f731fa6552f91b1e32d49cfb

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7255655d91a41f1e2fa3c0e2f1a15c8e940341934a6f3b317c082b8cfef919d6
MD5 17065f4a9a6379deba63b88c69184d9c
BLAKE2b-256 07783532277f2961ea36a5de9180a38448eec7f93012d9514ee48a764b07b654

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 061b20ed75221d48be6763eef1da14f46ab09fb39b6fc5dda70c4882d99e1fc0
MD5 e38406b66208d01e69929b003bac91be
BLAKE2b-256 2c706bd9350d4514cb134ea0b6cf6b6567121fda09ae3761c2a80181d649773a

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a81b690631f6f493d581ba75dd22f554fda00cd35e0b2bdfff54870110637666
MD5 d646bf6c0b661856af6bc307d9e9b47e
BLAKE2b-256 38e34a4b5e04fbdbe8b1e0e92aecccfec0205429eaf829b4cae93daacb5856dc

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 196e82b99fc1566545a8f4b3eed0273141d2080835c7252bfdaaa62bb6419846
MD5 f8e81538ea3e0b7fe141aec957138e91
BLAKE2b-256 a847843fdbd6f2041e6576a9d581f44668c932cc1333c9d5d10a3b7d416ae8fa

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ba9b983f49d555c6f8e017c8cb783dbcfa247555b667040acf83cd5bcd8b84f
MD5 fd1b9f942e6e2c6a8a2bba4f7fd6e00b
BLAKE2b-256 acdcaf1d3e4c30a87cd8c6cc6233cf7945dfa2194019351611f9084fdaf341a2

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7c4e6343c7105bced71dfc26b3cfb00f18d6b09f10bbcf6c85cf9d3bd48ae20
MD5 4a61378fe334d381018e2e02a96fbdda
BLAKE2b-256 6fcc9a2234e71e9b8804f2ce405788499c83e7e32447f65fc7ac21b343d81a1c

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8f2539471a576c98f1bc429471f151847cc37ad4da0aec860d987b026ea0d76
MD5 c56054fa23d4efaf2dde4dee9415c85c
BLAKE2b-256 72ed7404eb18514c704da909bfb8ddda8827db7212084593fb1c8bc13addeff4

See more details on using hashes here.

File details

Details for the file graphrecords-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for graphrecords-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81e8f0c1193dd5d450d4ff181f90e2cecfeaecb90bf41322bbd503c06d8c7a43
MD5 876c2ee554925fa4e5ac563526ead947
BLAKE2b-256 cd65b301587aec7ee69255f2064036d4ddc30ba3f5bc19b45b8ed9683120a0dc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page