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: 'Alice', age: 30})")
db.execute("INSERT (:Person {name: 'Bob', age: 25})")
db.execute("INSERT (:Person {name: 'Alice'})-[:KNOWS]->(:Person {name: 'Bob'})")

# 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_with_params(gql, params)    # 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": "Alice", "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: 'Carol'})")
    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.8.tar.gz (969.3 kB 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.8-cp314-cp314t-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.8-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.8-cp314-cp314-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.8-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.8-cp313-cp313t-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.8-cp313-cp313t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.8-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.8-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.8-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.8-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.8-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.8-cp312-cp312-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.8-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.8-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grafeo-0.5.8.tar.gz
Algorithm Hash digest
SHA256 e3b3aea26650cd9aee6864d8075362b0148c52074b86287c250147c9131864db
MD5 fd8fbd5b44e2b742ba789228e87c1570
BLAKE2b-256 963ec41e18ae6658dd7d5789f454a72096de1f6c9522e28fdbdc626187a36f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8.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.8-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 168bd9076d94f87788c00604adf4e7abff85149180a3495811f1e4cf26b505ca
MD5 b4f32b51a82ea053dcd99c43dd667551
BLAKE2b-256 21d9371b63520aaa021b20d415f4929a7a90422e5ae2eba79b48f7b19f1cd1c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11e0f9eb01bcec01ed0ae356a4179332f189c02d06ec35c61e40378ec6b34e04
MD5 e99338f722494d19758a4e9a273f240d
BLAKE2b-256 ce52d77732fa5df37b52dafc985f742e8442db652204a6e9e4f88f79f1421550

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a859da2bdd144eb158c7e0ad7ad1533c809ca90c449ccdb01e70911792c7cbf
MD5 1dcf1fc33d8480818810f7c3130fe951
BLAKE2b-256 656f69ea9cf5fb3d2d4ee1bc1d8998c9464c1ae3ceb28857bd70970f1222b8d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf83456685bad7485404afbde6a29f5f3a076acda8d38cdb1e6f44f62e51679d
MD5 ad4753beefd3be57c89193ee7348b878
BLAKE2b-256 404e3b450b3d4428ac87dceaf4ca3943bf3e66b265adaf8aeb089dee65dfa349

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0022e40196e6e5e59468ae1374ae29f58399b65ab885c5bd3a3e95e7cc9e7db3
MD5 4a598aa3daeb7b2b7bf9f0c4ef8998ba
BLAKE2b-256 fd9f88eb287a67fecd068b28511b946ccb411b29acf2bd45730f82cc4a5bcd82

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a379150e1c2ca02e089a3f6d6e2cf0ac785fb21c3a9d0452799d4d872590c298
MD5 dfc1d5e587c8f34be9c10775edfe69d3
BLAKE2b-256 b9f8276c0c40498f4b13bf7465aee181f8390d1ce615061ebe9ca07a20bfb545

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35a8f9548679daf3597ee0ef2b9151e8dbb4c58d9baa19f570771665e7d991cd
MD5 885bb7676bfff6eac08215585b8b95d3
BLAKE2b-256 8d90dc45026b36ee20def372bd1ba5937fadf77aa41a5a2c37dd035aedc9d9ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de31858164d9dcb68abe5c4ebf7b084e6815ced5de8ef09a55f1e3305abe6ae8
MD5 13c3046f2cafb01c7cc871012edc8aa6
BLAKE2b-256 34c7e3e418e4a9730e8b011b1e48520aa1eb329427d0c5d04db94d368a371f88

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 294ea2e75744d1959d66f3178145ffcf290fa51b5d830b0bd3e67f0c4a95f11a
MD5 702870f846b3e2f2eba6e28c092a9726
BLAKE2b-256 8957bf3e7ebc59bd7877f6377b2647ec564e89cce2240ac32650284cfde81c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aee091d7587a401fa0a87bc669d4b6653c04e38693cf9e76602cb9e4dc8bd04a
MD5 013ea4fe5d4532bfd011e046edbc49cb
BLAKE2b-256 adf045fea8039d824dea015438af8824fa52c1455c7369b38a6b7e05a1f5f625

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33b03ab0766725d74c0ef433e868db761c637f3bd192790d10c6d7b48fcb36cd
MD5 bc2485a2b5eb8bb33ffe4b29ff2baa6a
BLAKE2b-256 f9153de2aa491080175e0cadd5b79b46a9951cd6ae56bc0c500d2e7eb85f04ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b6741404c05d27c8f651b9bd82d4e26fc998e8b8e64b63b606ec4f89c6f1e7f
MD5 d25cfc707113c7c822135f5f1de1756d
BLAKE2b-256 6788e16698229c8a6cce8ee5a3994811fda33b737fc5d1e14617fbb1bed80909

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5bd37f7b3fc3d57fac35264bf2d6052a12c5d3a0c1427d1338c6f83893b5920
MD5 511b57fadcb097bd82766478533c6527
BLAKE2b-256 75acbbe1f4d8cfb8d982c7d8973bf5dec23b29930975e51a09392a1775966ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b040a0a95e7578612ca38b87509c6becae9a7243f37dff6b86a456bb241389f5
MD5 1155445ccfc2f341a5940181a24e73d0
BLAKE2b-256 1f0a621a9a208e7225f8d31f1c54bab9eb62abcc2ce8a1d40ea634de0a24b628

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: grafeo-0.5.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.7 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5165e9103960d1cde8bcd95f9de9858d96dcf11ccc20a033992d68bdc78f2fb0
MD5 47614008389a59323a47e6789db008ce
BLAKE2b-256 06ac81b3a7cded6e6874158733a47e68a59fdd8bd4a8fcd724e2201b6c189e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: grafeo-0.5.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.5 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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 883d7b261cdd27c2d694b885fa0db0427f745e80171f9504c6bf8fdf4b639cd2
MD5 53015f83c18d0a5b69b7502134a5a66e
BLAKE2b-256 dbfcc97b188e0725bd44f6f228354f10ef18ddddcbf3b303e1ccc199c5294ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b493ae2a9b5b08a68bcd28bbdde13927620a5d0eca987d120b34c6be57210ad1
MD5 39851eaf165cac362ee6da1cee623e49
BLAKE2b-256 faaa78560ec6841cb3bbe2eb1cc6bc8363429b9fe2819dad54aee788e62dc10b

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfada56e635ba776ebabf70c65305e1b36b6ea68d0e6168f550a356009e5ef3e
MD5 00785c81bcb2acfb372d7c9b109b0e97
BLAKE2b-256 e4d03dd79249dc96b36aeda56799a55a9d49030b82c8898604d8d5ec9380fc46

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eac678d93a96a158ecdb10476d037c3087a90c6697f921b8af0cf6e57232f04
MD5 3e666e6d372bb8c226ce9c5f21340b6b
BLAKE2b-256 0d5fb273664b7c700b281979e64f5b69198138d5b7e596b032a76a9b35d752f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bf0217dd694ab90fab47cb024de1e8cbab828af70612d0ad67bacff5227b056
MD5 04049b4c67851f432d3e829a7da51ece
BLAKE2b-256 c7364a63b1ad07f11d1a0116e5c5cb34b7a9c5191281ec0c1b9fcd7744fc87c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be835793e6c0b8dfb2105720a5e60b76333583ead4ee2bc340279c876d8fafa1
MD5 e5f17ed635eb254ec7b78f2789421283
BLAKE2b-256 418d5337cf16b397e7ea8e1db9761121195438153c849964208ad8b0929d47c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fdfff9b93d315545d0459656b420004a40f83ae4851b4180571ba09c9c226bd
MD5 951ff091178aa5142523efb7e4dd212d
BLAKE2b-256 486862941f2783ffb42cb93f6b813cffe899c8f2e2147d36b640f7c99b706765

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.8-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