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

pip install grafeo
# or
uv add 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.4.4.tar.gz (883.2 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.4.4-cp314-cp314t-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.4.4-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.4.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.4.4-cp314-cp314-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.4.4-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.4.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.4.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.4.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.4.4-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.4.4-cp312-cp312-win32.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.4.4-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grafeo-0.4.4.tar.gz
Algorithm Hash digest
SHA256 74ceb46b888aefd0f4b61c207ebd9a09b60f7749c84a60d9efb3ce032ff183d8
MD5 dff0026012aee6a09fcfd5e74c51b36e
BLAKE2b-256 3684f94816f7f0871505d12141a4fbdace357626ceaa40eb89e4c1cd736c0375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b21e77b898611fabc72762210683eaefa07a8501f6503724549690a9169e9f2e
MD5 13adfe6ff4bb8e87a258fca3acf11372
BLAKE2b-256 ee509da877233229598c00fa6874070018e32dc986a6b070d6869420a110fcd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8c2032a8bcbf64dec1b5d24c139d93ecb07d42b3eead93f1fb64ac481d2d2a3
MD5 6dd21105ed722fb584adaecd27c16aad
BLAKE2b-256 0fe807fc6778fbf6167c2e2e7861496eb0c5683029ff54bbdb1d9b6f55509b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a96683d5f31d2c46a7fce1bd9797c348b92d24eca08e78c71cbfb7467759dd5b
MD5 b15608ffb8aafe2506e88f7ddaf48d25
BLAKE2b-256 2461c54587aafa846ad8c5acb8986cbed3bd65918e27bb4b321b093af16e0b53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38467d9f77989bd8d58e27c2dd2c5d9c46c34a4ee959b1d5c9d7c4010da2e5f9
MD5 7ec7a758546d3618848f636e2d5eabb0
BLAKE2b-256 af110e73529ca5af8d9af9dfda059dc241ffd0faec4f71ee4663c13237a6416a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d735e4546c9d6739f38ff035a867c3e9723e7cad337c4199bd5a02aa0696580b
MD5 11999f70c63f1b753525231bb6e66c44
BLAKE2b-256 6f8bc77b961ffadd9ae468680eae5c1cfa7b46be7fe562adfef9be8d61bc7842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e227c877ed21658a13a162c074f3f3a029301f5896f00a7aa10a99653585e3c6
MD5 fc7d3d1510ae9ab7aeafff165a8792e7
BLAKE2b-256 913917dbd6bba4428ad301dc14b4cea55ea56470f4ddc3cec1fe7ce9ae241704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ef53932d926cdc36a2c088e338bf6571aa173f2bde3fadb758c4770886162ab
MD5 621ce9780476847eb387571e8319cd62
BLAKE2b-256 bcc8da941f691d5bb724577aa032933876dca63be0a434aff81c4a1d2f8c0bc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d74c9b19e9b9144e4c0ace2750ae854ddbcff054565ec45a027422ae621853da
MD5 f52f81c6806de3ec8177e1174cf012a7
BLAKE2b-256 35e9aadd91c88c9bd0900373e4623d54bd036f69afa0b322798ce87f776888d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d78fd5f93923225a45ec76cbf4a12d76d4ccb2e2ab389cdc930e7053e65a11b
MD5 a371b807b3532f92ea0f5e8908725abc
BLAKE2b-256 0e88f3427f8d208ad89524e4952c9b0f3098fb6d8dcf00dd0733ca1c58a43c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53f5726c34aa3f029643d472293915e9fd9eb6118913ce3d70d1a6f2e0b67a62
MD5 e77f01b04b93b4e6e9c6eec0f43e2c7b
BLAKE2b-256 8c01b8fdb64b6b26a1054ca5c94b47f2df1583cf6fa4f47ea7f22ca39ecf7731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 473b7dab7bc5cb609901d81f751714b02f83aa0813ba68f68e4fee32b68cc4cc
MD5 caa16faefb81de1dbae873746cdceacf
BLAKE2b-256 4b83583d5bc241ba1bb2f50e871e5661a73d0cd8d15f64ed449b4676740ec585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 984fd9905183744e9eff4140f36fa97d7d5dcb5961e6ca9f0ca9ff81aa9f4014
MD5 dab570574a363bc725bfbfd43aabfb86
BLAKE2b-256 32b37aee1ffb86c72b2c3b7adc41534a5fbd225e7394f3c2927c8800c48d2251

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1d8d5124db6c9c3fa59ab15e8e6e7e01a09dd8eee2d3150f7d497e74aff003c
MD5 eb6f5cdd5ac899a705845144a928b137
BLAKE2b-256 50027a3d7ecabc544838b1934e9d0d226fda62cca29641aab6f2edc4559fa838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 074a2261240b6e03e353bc6cc12efe8a6337a45ca1f6ccc259391f34bc035398
MD5 4e364290e176963a516a01fa1a3ad96f
BLAKE2b-256 52f411739c6d975b4be7be6c9a2f535ce073a67e783fb5696e0f720c33456216

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.4.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.5 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.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0359024764bc3e27c2291a5f8801cec32660562ddf765b2cac9b678412ac3fc1
MD5 c1bccb0bd739e6d640957225e3012ac8
BLAKE2b-256 e82262dd5a79507083d381021e2dda4ab439b426aace8afb71c3b9f547aa57a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.4.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.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.4.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6202f8445dac2463352f6dcf2cb7bc244a816dd429c02e8245d162fb3df9e0c3
MD5 1407a95a6a7cacd26b5dc1bcf8942b23
BLAKE2b-256 a3e9a6b2125b3409f9ffa2348d330bc7e9c4dd207386781a23090d62c18afbe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c086ccafef7aa3913d6cca3b44f55fcdd0503f2efa87c4ea7270098ffe56c5df
MD5 d5a982534e9f4bc0f1450af64b2eb2da
BLAKE2b-256 7f6021b65bd377cc2e3f4995fb18f750f5d45e751e4275910e489625f77680f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab26e80c488888db9e2e8cef119902dd88c0f1db7283f1e34138d99245c4de8c
MD5 a977ac6252a22818609080421266670f
BLAKE2b-256 dfa5d67c03eb759d39146d21499ed6a91d5598a8880e7c339997c4dcb44b5868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a6499a0c6709c802011cdbb53cf780cc93e9248ff6d8fa905f1e35231bf5395
MD5 51533e5b1723cb7d73f715987687978a
BLAKE2b-256 0d6afc3f524a0e9ac21f6e1ed1151bfb1dddf395a1982dcb356e9d5a0b40da80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1da54067dd63f2d49ee75918c11b11e12cb57ff2654d0a37d63221cd128acd6
MD5 9c0f21a8ce08d13bace03deb55720499
BLAKE2b-256 32562d02afb6f71e778e0b0d6bddb0a37348c47ae9b14e04b572bdde6cd49618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a54f760be7dc2de08deeac6c9aad21edc63dc30d70915c46c2fd6467d3e807e6
MD5 c450344ffa4c3cf3a8ce18a5b4bf5186
BLAKE2b-256 42b4db516fbc21740b2e079fadb162a9753566822ecbacf1735d130b82aab5e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9778d88b188dd3ff963bba57d2ec5aa5c03aad3efc5dffd52cee119bed3d002c
MD5 b398beaa8a4ec111f835a0fefd1f084b
BLAKE2b-256 0a25bb0ffcd461b3d67e6f57860c10a094d1ec8310b030f9c6fcb2e67fe94663

See more details on using hashes here.

Provenance

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