Skip to main content

A high-performance, embeddable graph database with Python bindings

Project description

grafeo

Python bindings for Grafeo, a high-performance, embeddable graph database with a Rust core.

Installation

uv add grafeo
# or: pip install grafeo

Quick Start

from grafeo import GrafeoDB

# In-memory database
db = GrafeoDB()

# Or persistent
# db = GrafeoDB("./my-graph")

# Create nodes
db.execute("INSERT (:Person {name: 'Alix', age: 30})")
db.execute("INSERT (:Person {name: 'Gus', age: 25})")
db.execute("INSERT (:Person {name: 'Alix'})-[:KNOWS]->(:Person {name: 'Gus'})")

# Query the graph
result = db.execute("MATCH (p:Person) WHERE p.age > 20 RETURN p.name, p.age")
for row in result:
    print(row)

API Overview

Database

db = GrafeoDB()              # in-memory
db = GrafeoDB("./path")      # persistent
db = GrafeoDB.open("./path") # open existing

db.node_count   # number of nodes
db.edge_count   # number of edges

Query Languages

result = db.execute(gql)                        # GQL (ISO standard)
result = db.execute(gql, {"name": "Alix"})     # GQL with parameters
result = db.execute_cypher(query)               # Cypher
result = db.execute_sparql(query)               # SPARQL
result = db.execute_gremlin(query)              # Gremlin
result = db.execute_graphql(query)              # GraphQL

Node & Edge CRUD

node = db.create_node(["Person"], {"name": "Alix", "age": 30})
edge = db.create_edge(source_id, target_id, "KNOWS", {"since": 2024})

n = db.get_node(node_id)   # Node or None
e = db.get_edge(edge_id)   # Edge or None

db.set_node_property(node_id, "key", "value")
db.set_edge_property(edge_id, "key", "value")

db.delete_node(node_id)
db.delete_edge(edge_id)

Transactions

# Context manager (auto-rollback on exception)
with db.begin_transaction() as tx:
    tx.execute("INSERT (:Person {name: 'Harm'})")
    tx.commit()

# With isolation levels
from grafeo import IsolationLevel
with db.begin_transaction(IsolationLevel.SERIALIZABLE) as tx:
    tx.execute("MATCH (n:Person) SET n.verified = true")
    tx.commit()

QueryResult

result = db.execute("MATCH (n:Person) RETURN n.name, n.age")

result.columns          # column names
len(result)             # row count
result.execution_time   # execution time (seconds)

for row in result:      # iterate rows
    print(row)

result[0]               # access by index
result.scalar()         # first column of first row

Vector Search

# Create an HNSW index
db.create_vector_index("Document", "embedding", dimensions=384)

# Insert vectors
node = db.create_node(["Document"], {"embedding": [0.1, 0.2, ...]})

# Search
results = db.vector_search("Document", "embedding", query_vector, k=10)

Features

  • GQL, Cypher, SPARQL, Gremlin and GraphQL query languages
  • Full node/edge CRUD with native Python types
  • ACID transactions with configurable isolation levels
  • HNSW vector similarity search
  • Property indexes for fast lookups
  • Async support via asyncio
  • Type stubs included

Links

License

Apache-2.0

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

grafeo-0.5.20.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

grafeo-0.5.20-cp314-cp314t-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.20-cp314-cp314t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.20-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.20-cp314-cp314-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.20-cp314-cp314-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.20-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.20-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.20-cp313-cp313t-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.20-cp313-cp313t-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.20-cp313-cp313-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.20-cp313-cp313-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.20-cp312-cp312-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.20-cp312-cp312-win32.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.20-cp312-cp312-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.20-cp312-cp312-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.20-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.20-cp312-cp312-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file grafeo-0.5.20.tar.gz.

File metadata

  • Download URL: grafeo-0.5.20.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for grafeo-0.5.20.tar.gz
Algorithm Hash digest
SHA256 ea434870c2b19c9c66b9dbe970f4cdda0ee4aac9e6f907ba2cc62d00c8413b2a
MD5 b13734ecc5f8613c26cb16eccefe1910
BLAKE2b-256 ed4701bb1f03ef0d06eaf4a69b5c2f9f89f4a3793d9139950b1d3af987928df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20.tar.gz:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f22d783e7b34da957815071c643cf67181f81a988857684502172912ad1dd6a2
MD5 98a21fab07b6809aa6c0561169b05306
BLAKE2b-256 3efbac25d5f6757b2dfb866103128d29413ddfcb2ae58c8811ee95a3c26324f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b019d9fc54990e1697518cfdbab7a835dbc712a30c1e7f24c074f61c3088df50
MD5 d3d6e2e4033da8b670173f441a174fbe
BLAKE2b-256 c5d7f8f9dc7effeb2a39816c679f89c487d115fd71b910101d14b06b8999a2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 026ab91eb081fdc583b0d093fb367b7dcee719f1e87ad0c08ae69f9f3d76a5e1
MD5 e63752ba22cd039b0691ccd163a24680
BLAKE2b-256 948c4b4aba2526c4ff1effa74317d49e8d859a6f982285c2bd5feca5371966fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c82b5649dee7f5eb8bcfd98b18edd914b7cefdbe42ee6042f71f5a90e0c57d6f
MD5 a0e322101f5c3417123ec2a5c7b5b8c0
BLAKE2b-256 f6a55d18c71e61f9fe75381c64f94d143f35b24b99694342f712780c27798783

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db54fb6af6d74c2b3f49ee8187d53a23e7d31399f4218fe60c3d75e0946d5c74
MD5 7c9bd47caa5cda47d7edac2d6dc4d6bc
BLAKE2b-256 5b19a41df60d8f10fd04b9997789ffb582a11200856a363c52eab5168b70bbad

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6f7b85b6d0f97429e8cc6b3cfe2652b772a9cd662dce757700c4a6234da5033
MD5 fa0c650289b5572caefcb133c2588a91
BLAKE2b-256 ad51e73fa8739144fa1d8922e86061d4328f03b9f15f483c74bb176dc31fa147

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eddd8fe0d037fc51b65bc994bea980f8ec1ba1449b3b79addcf548e362a3b0f7
MD5 4195bc4daa1ac897ad36cf95156f7ca7
BLAKE2b-256 c677fe1c273be704fff3d8b2bd4f1af762f1ccecb6798e420f99b09ff2438110

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03794dc470561485213a39dd074ee941fad774f03fd7c6ab87da9312cb221778
MD5 cfa0e72e6dc2473a31f9b1a9b7afe0a2
BLAKE2b-256 7d4a555c2734aebdec28144762b5400f43e8c73725d0c565896bbfd5ec4736b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed1d03c5c84f339a8b0f36a2278d9ba0477e35f37081a8bed18e48bf3ebb9385
MD5 715d92460645b6bb416a715f080f8a60
BLAKE2b-256 208bff2f65e6472cf65c17229db7f1fcd2d00ef4a7e84d2bbfddbd5edbb2836d

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cff875678b20f5f491f797e2ab1e7a3b2431ae26baa8d21f87faf38ce7ebc619
MD5 f297f8294d4d79ada58690507a3bd65c
BLAKE2b-256 87e0c89d5e0cea21b8e1106960fc8d638aabbcf11435ce49d977a8c3f7735165

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3162244ddd89957cfd8be9e532df8cf6e7b34fd511e1b8004e8af9b99671ef4b
MD5 dbcd9bf2dd9f0f90ee48072c72fbd991
BLAKE2b-256 6c3ea0ef1a63b1d607b3d2b1a00367980d9b89bb50ff580d9df3a662e1345851

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c4cf23f30de7809fe76f5c9fd85c0b70aebba217698567e09b47bc5fcdf0fe5
MD5 15debfae528b6f6a1d4e0ff181495b32
BLAKE2b-256 be62ed257cb5bc9f9b702eb11e7546e3dd69a55d2b68f625cb8905d10153e262

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86cc112783e4bd54a4f5efc27bcc9886ffa221e05f913583396efb65ecbb35d4
MD5 b9b0a2fb82b3dedf949b601e57dbb93b
BLAKE2b-256 e5fdf59df01725766027528126ae33105d3a9e705fc40fde7f086c8f1a7f6620

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56eabeab9e968714dbed6ecc68e067b5abff0b029d515b19d0b56768e4a2f0a0
MD5 2310ec9de2b193328f6274ed9b559031
BLAKE2b-256 73a6612fd88d136c649a760ea0cec75a5afdb71676ea51db0d01134956d30e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: grafeo-0.5.20-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 587e483a0fa5b9a4a392747308de623076277548ccd77d6d61235587269225af
MD5 fee945879a957d7620a2e4a2604da271
BLAKE2b-256 cfb615e1c763e6e38dc7841296f8a76b100c7ce75f5b72efff82c709ece689d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-win32.whl.

File metadata

  • Download URL: grafeo-0.5.20-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 86ef617762f3fc6eef9b09e880e77d2eb3fc257b452ea824d3d3449d5bbddd75
MD5 2e4046aadb4821ddf0e6ca5df2252e80
BLAKE2b-256 4bb82ebcee2f50c9a9b87746cb7f783c3e5f23aece858fde5d8b1cd87a8f37b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-win32.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de821b845e3a0128a248bbc280005ab65da7c8f5398e31e2574f1d46c6066855
MD5 5d730736892e95feb4a396062848e501
BLAKE2b-256 14d8023c791e0540202b67461b0ce2036ed34d0905a4bfc9c28e566965124d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42ba475342c2eb9468389280d63e061ea4b80f3bd41f48cda2b0ceaeed23ae22
MD5 197f3caf256bc221de6aafb0d227652e
BLAKE2b-256 6ddf96e664d6c407776a51e9300786f2f4386fd8f2b3fa7aca0fc76829ae7d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f314b6bdd84b3dc3b6e8adb9c3bb4bd8961e674d10944ffb6b202abc465adc49
MD5 95b9acdb1800f871469cc55d004407e7
BLAKE2b-256 4d1761c40e6fa3cab06e39a281463a2def090c3217fd42bd4b2dfcb1cac5b311

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ceeb9e8eaca9cfe955fab558cd55ce65c0754194d6c1c90b67e5e89d929144e
MD5 4f73dfa2920eb202f9f62e1bb6654224
BLAKE2b-256 92c27be4b48f645b87e936a4bd4ed02728050716feabb5d7101364079a0b2dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 762620ae752bbda29c415c1d0f71eb7a20d0880a30f7778999877ccdf69edeae
MD5 f8248305bfa94897934df68cf3b2ece1
BLAKE2b-256 3ab4d12a321ca56362095ccef29ff9951be1813ccbbe542931f032110c974c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.20-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.20-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1d93bae03ac7bd70c3b18090075517575546febd9a1fa4f17cac9bc141cbeb0
MD5 d2989f77f23a4594565ce44ae8d4e93a
BLAKE2b-256 f309103dc90a4b5621f0b4bd3094c315618e677800a61e211e6adfd1bcc41b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.20-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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