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.9.tar.gz (978.6 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.9-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.9-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.9-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.9-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.9-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.9-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.9-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.9-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.9-cp313-cp313t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.9-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.9-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.9-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.9-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.9-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.9-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

grafeo-0.5.9-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.9-cp312-cp312-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.9-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.9-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.9-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.9-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.9.tar.gz.

File metadata

  • Download URL: grafeo-0.5.9.tar.gz
  • Upload date:
  • Size: 978.6 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.9.tar.gz
Algorithm Hash digest
SHA256 1ce03b346b656bcfc32433c96bc146411f657ec4c9fbedc591f4680285b078b2
MD5 d2dd4a2ac51bc1e67110254c2de6d6f3
BLAKE2b-256 b01172a745d441f9d99c89766b3caa7e7402ffb6261d3d4b2e6fb37009057ad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77d2458668bbf3e5a83dc4508025404261edfafd1d3801fc928970a382d2839c
MD5 79d8c591edd23e03c66b58b49fbb2198
BLAKE2b-256 5c6aa47ef17f08fb1ba238448b4346babd23aaa099c168c1a6f0d0ad1b3c61ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f1da316cce8b41cf3f4c0f91215ed2d39c8ffbca2a7f8a2e228c622b39b862a
MD5 a9d69c5fd5c08aef09ea3bcb2439e7c0
BLAKE2b-256 9aadd6530a93441e8d41ed5120bcb56f50a8fad90745d6656842b6dd09547465

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a69417997714694a08d6b6b7125b5f65ca0bb2cd10a943d018c91a657825c157
MD5 f1dd92440f3c084be30cc46fe90c0a4a
BLAKE2b-256 dcf19db51cb93ddc805c846eacab706c305f36afa0e7a3dd4f88d6f7e19df750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2efff6dae52f5ed39f48c87fa7bb15b6f04b8ce3bc548b6f1a535434823ffbe
MD5 96aa94e1ce30ad31c591cbdf41343f61
BLAKE2b-256 bfbd47a1f7bcc16c7151039f3703b6a6ce380ab3ce25f4fe7aeb270e626a1ab9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cb81134361a5b080430bfcf6cb031dc56fd9c807d84574c3405e748a1c0efda
MD5 0502fc5247844692d6437265b6e444ab
BLAKE2b-256 879d754700d98dc1a98ca165852256c9b0a9cbdabfe4c7cdfb0a6634b90de665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f4eae737e7ae00859bbb7f54bfbf43b835e31ca275b91b872d240868a375f9a
MD5 fef9a5f0447826cfa38c8001aa93e7e1
BLAKE2b-256 33c2d4ee8df65340dba4cc3941720ee290006efe6bfa2f58ba73bf485be2bc68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd30b21bf405062d226447a5fa29b3d7c8f615dd8998ab3bb36697de58d59b0c
MD5 9e0d6ccf98d2a6e1e48537c495cdaee4
BLAKE2b-256 8774e3a622aca5347fa8ed794f78208609a81d41a581f2fedb155484ba9dbfb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abc4575cc12dd48b71261fd7e3e45f76ed5438c1079f146bf4bfcc1559118c0b
MD5 395dd9a9fff0138d6e5df1bc61a512ee
BLAKE2b-256 41db7b1e9c8d08d28bbea50aed59e67be770e9dd3465972efb342a7d0d72941b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 565133bfcd5f98b1be3d071f5feef2872b6e049593435daecb503b17fe4a8834
MD5 b5113e0bd5956211b526c52042dcaf88
BLAKE2b-256 c04d6039559e8749169f8daa8b02536c41db11ccafa340fa5cc58cab2b74c5e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8c62771799c7320f65f855585bb75fc5f5c726cfd37785417d57f1070749400
MD5 adbdc91656a47b833a860afbfb009251
BLAKE2b-256 8647b517c91f9f6ad09227ef5e1e7e1c94b219ec654751695f62722a6fcbe31e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cbc4b7d2489c56ef75fab2e50b99cfc216687c79bdc553db6c2ceae5df0ead0
MD5 b04e2e8e8fd1de485d0d70c6841cc816
BLAKE2b-256 f0ba6a0f1d4477bfb9ab9e489cd24d0c170fbc91b6b1f2d30d4f3f2157e77ff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc8a6579ac043e9754cd484bce9b5689cfc955641f1db32baa7a747f78575632
MD5 334a79ba1351a860045ae33fc393f69c
BLAKE2b-256 7b243ba9b476f185192e30cd488c8ab834e25242aa603e16ca930a9ab29d66c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da62a7bd4bb3ed5677ddd5282096c27d25290535e75bcb5b5fe6e8e31f6aa8ec
MD5 a7daee11083095298ff4354f46400bb3
BLAKE2b-256 a524ffc5d89728bb871a1693516de96761262950e402bfe61f8db7c5ad2bd6ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 993194cbbb480b9fc752785ad04eb9643a45b9ad5724c98a9629249e4be8229d
MD5 42120496e0468fe17b0f096c90dc57eb
BLAKE2b-256 47c469b28bba825482406c5729b5974d1b5805478288a1c9078085ebd405001e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.9-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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 062989109575564bae67bb8897a2226200144c1dda8540fc211f306aabf81dbd
MD5 f52d3ab313d74df744c2d7524bc113d1
BLAKE2b-256 bfc09d6f740622a15b048fe026f4aa70d8e301839eacfa38bd27a57ff2a51aa0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.9-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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd63035d8ce05517ec6ce8b19812b27f9e3981844ce67b3e6bc31b0414ef763a
MD5 6d7f6044ff175a6e7f7684dbe80531e3
BLAKE2b-256 58b2a8809c5daecce7cf567eb4aab391eb447aba5e3dfaf73dc27b10075a0593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca6a1325566c387f0c0484b4816bae0a52340e371c5c39e5f26cd965d8bcb71e
MD5 573edfe61065190c57c52cb547ab2756
BLAKE2b-256 41a50cd5a18e016b2c9c11ed8ffc4bce35417b64f874791227582aeaa7d70572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78eb90d870123b9c97c8ff653c3334ce0482575eacb384d584b792889e6bede2
MD5 8adae41a1db2a1573107994e2cac0107
BLAKE2b-256 88baac4b2e03dd205e09ccb3867754b9222c4ad7e5de566f1ec24c5714a49feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a81393cfb6e0c7f3a2307bcf264a1cc92b973696441edb609a5c0033c65ce22
MD5 087943d21086060e6985f8883a2c0f18
BLAKE2b-256 798500997700394ca18bfeb75428a5f79834559e280877f1ac6e1cc591ea0c4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf7c100c651c24bba6181081802d3d8423e1f161d12a1d9dc85c30e97ebed463
MD5 a330d1f6641da4905e283489fe410271
BLAKE2b-256 dca6ed64c5b298656aea3845366b0051aca78292f7f8dcb58f77e68cc899c71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fc1d22b115c304a07276d21517817a549edaa586db6644791340c4293114a79
MD5 5c5001070d9de9d9d5d7133ec908b9c8
BLAKE2b-256 f750bbd32639cff15abd2a7762bef67a66b135a4920e5d5ea9ef4817101ced6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27f568818d44d7a8958152317dd8a5705b4b532177f13bd4b434ab0303e9ca36
MD5 0473ddbe9d511c77f01084b08e9ab9d6
BLAKE2b-256 fdf840ba6307d86ec8dd44c3581fe156390872861e4660ac3540f560c40a7e9d

See more details on using hashes here.

Provenance

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