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.34.tar.gz (1.9 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.34-cp314-cp314t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.34-cp314-cp314t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.34-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.34-cp314-cp314-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.34-cp314-cp314-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.34-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.34-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.34-cp313-cp313t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.34-cp313-cp313t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.34-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.34-cp313-cp313-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.34-cp313-cp313-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.34-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.34-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.34-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.34-cp312-cp312-win32.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.34-cp312-cp312-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.34-cp312-cp312-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.34-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.34-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.34-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grafeo-0.5.34.tar.gz
Algorithm Hash digest
SHA256 1c4544f2315eb536640d03ef61e9f84387c1eda729ec2ef3ea5d61fe49034bf2
MD5 128b8f52f8bca89764c1ae911f598211
BLAKE2b-256 82b442e2fdf34eb69ef6e101d66992628c392a53f10c81b702b8eec27e9ead80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 644f66f4190f3e1a0bc83e27527f79edd938e198d042618228c787511c47e94e
MD5 e0beaa7eebb266d7f720d5fca002b60e
BLAKE2b-256 37516f7ec4c0031f5a5c43f957b9b9423928be2d2ef801aa5c0fda35cae92f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8c137e5a962d42bbd9c7053c73a86e9caee44b7f71f3602ec726c5b0f29c45d
MD5 efa6e2d8663fd11f2ab257388f8cd5e5
BLAKE2b-256 f9e8470b691354501d0255e898b4564098c8f1e5a0f191410b78575631c49e8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f444b1be50cf4327d9100aa9c9b66ae98fdb1125643497eb797f5d75e04883
MD5 5cdc153f85ab8f60481f081fc9e0885b
BLAKE2b-256 66284fa1a52568efb5f4abf50ed660bb6a709d32fbbb748fad6258cbf57d088b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e0597d94b0cfd4f802be2f0db273b560f4df040dff07b631523515a6f46f1e
MD5 5850d08d9cbd9caf0ec123ded3b38901
BLAKE2b-256 86cb485f8412e447f7f58f996c7b380e6f3bc37ce4f0326b36855bf5fbd3820d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18c1a0f5932bb27055a143690442c069ec9b3cf962c0042badd8319b1cdba5a6
MD5 b4b8d4fb008b35fd723863eb0cbd7a5e
BLAKE2b-256 79bf460937d777700c0c67a4603153d51993fe01b9dbb3c9aebfccf05325fe8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a86c3408a3d70ab96b3d783f05b30b42b1b64bf44fd0d265837f1db03627ba4
MD5 dc79253153979ae44344ce6eebac198a
BLAKE2b-256 43e29a1ede1df0713c3b336d91a41c4a8bf63ac4ddc7cbd55fd1384bdf10d71c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da430711a2a66c70fa9c47258ec451ebedf649201d6852aded3f4354dc511f69
MD5 399aa083143708828e75d1e0686c0361
BLAKE2b-256 30a8ebbc6c11c69dfd5a02302f9f806745e8d0def61a5bdd376878e551268972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3249ab40945b954a9249610efe6a34ea58835e57dd04d7eeec902cd2591ca991
MD5 86c48ec0ac94bbce257a8a7bdaf0c140
BLAKE2b-256 04004c0951133a99d66fc3b07a190e21fc67bfa034f811cc9839f2834ca93a7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6c69c3b4686e3f5809c2542159c718caf0ba4d72befaa83f16e382ce273e48e
MD5 7cd0ac5f97a58462edc2775ebbdec0ba
BLAKE2b-256 722e92795d490425aa651bf018e081938503eb6fb4e9a99fffbebb459ca005f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22fb732cc29622c90a059a5772d1339ccc12a9b464a6cb187ee1ed0271e49b3a
MD5 970aaf6a55cc31b1f2b2074dfd8c0a25
BLAKE2b-256 efeb25e2970511c80a0f3ee718162d263f9631aa228a0d0d4b29c501c48cc0b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 444be4e1336127de4e16cd8b61c5b9b3d7d04772f686d156c3af0ded89379d28
MD5 ea20e6b0203ffff8d0aef28186624bba
BLAKE2b-256 d066407ff867f8567826a2c3a4bde9bc873f20b57648e819eecfae8c8f7fca18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3e221b28f38eac91730dd71376a785a7d79b3aaa628b4d0555e8101672043f4
MD5 9e08f29f2073e72e485ea51665aa9c0d
BLAKE2b-256 030e47e303d8b7eaddcfba1e4c207e5a35d962bcc53390920761bb64a4050197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edbc58ecae940132f5128e6997803808e5c659ba09bceabc3ea2b966bf9f6c41
MD5 706829b1f60c76f965122efa3fe2a58f
BLAKE2b-256 c29a2044d4c33728e9f0d3cbb49755e1eacdc42548a9f6a5f8ee42565fcd8c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fbe0c533192c850ef6f0e15afc640f326c7d7e97988001d839de7015b6f1f4a
MD5 978d623798a95d734560e72a1d21688f
BLAKE2b-256 5c503114943236c9d229ca7ea375033276ed7a11bd8dc54348d026bd643f50f0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 59954c232e8b4f743fdde93d2cbed94c556d93cb702cea123fbe8c80c1184d9c
MD5 25ebadd34f1884b626b14907c49822af
BLAKE2b-256 e12eec2a18731698ddcd55255ddfd722b1cbe6585854793eea99d4fbcc958c64

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f6bcf4894eb9612378ae096b7445aa9c19da1f85ed8432dd2ef1d8bc2755dc4b
MD5 17fcb38dfff12fe30597497ffbd1ce88
BLAKE2b-256 7c9cb94ca56c8fdcf99ba4dccb1579ee168ad1fad0ec5ecbe4b1712842aed494

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edd28c2fa1e222cab88329fd76232f6cbd2b3e3852fd03fa415a66d92a639a49
MD5 1945f48348eed2d0e2d4005ce71b4e68
BLAKE2b-256 954e5fa767f6c0780e97024f4873a76f782cdaf7c15ad440431f26d22594344c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1661c1f1a2f621003ed1568d60239113b2db3d5544178095973d10808068a4b
MD5 80cfe3c0f2db81ac28ee92795a3cf2ff
BLAKE2b-256 795f42431b96c97021e5b39c61d85bcfdac6afa8fce2cd8c3be56e643705a08d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ac48cc6c48143b0314c610a2c3f05d4c8d944f4bfde82f5916a928e3d2c4729
MD5 93b50a828caf92e944337c41077ca976
BLAKE2b-256 3d9bb947026ccac6a4a5d2121942779805bf2b58e8a51e13acbfa761637a3a46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 292ae4f146ad6224d35ef0620a2503a26274ecbf3ac9ca8686410f0df4b41b58
MD5 b1948eb3b35835bc3ab42c73134f5ddc
BLAKE2b-256 84fac8f7d03943c2399eeef7240a7553d5949ef6d0e630c9c19d578556907bbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d266b2954c67e79d0288db5c71822204358e7bd61956163d8c57fb884368678
MD5 ddfb6047e9ad1e225fd900580ed68765
BLAKE2b-256 44bfe545d9887b001d1793fa3c9710b402157db12ea4de6a9630c8f078709853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.34-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24b26a62d4636001d4a9ca84915d6320de428307e6d85110059296b0b634fc02
MD5 aaa74570adf4e4123d596a11eb081b3c
BLAKE2b-256 62df8b3bf123dcfecb9f823bc2302db231bf732cf2d2df4391f9367e90f8e404

See more details on using hashes here.

Provenance

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