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.12.tar.gz (1.0 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.12-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.12-cp314-cp314t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.12-cp314-cp314-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.12-cp314-cp314-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.12-cp313-cp313t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.12-cp313-cp313t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.12-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.12-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.12-cp313-cp313-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.12-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.12-cp312-cp312-win32.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.12-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.12-cp312-cp312-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.12-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.12-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grafeo-0.5.12.tar.gz
Algorithm Hash digest
SHA256 71324af1307aa38d1b2e0b798d34313d3b072f3966e73202f6aeb8fbdb89e287
MD5 d49e4590795f865627afd37eddf569d1
BLAKE2b-256 c4f9b5d7f8af6e642093ed0ddfaf77917fc22886280c1cfd8f79b63736dfe168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 983be3dfd2ce92ca42cb5c1206426592426ac1ad39dbd7f18c5cc7f86d1b1a5a
MD5 a8ff79c96a9fcde596c0e973eac81c42
BLAKE2b-256 c12e9927d7ef6020254afe90c3cef0bf047b30a6e62a0500fcff6b84f8afbe68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb43ca9ca4ab705b5f6b3f1de615ef6383c0c05d3e8d6fff7a3c52807207cc1a
MD5 cfeb8e7f6c9b106c75f7f9d8aa11de08
BLAKE2b-256 9285ec1949ef6baa909ca2e04ee7f932b3866c6f230c0e6a26f3c093d9f5c1c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 003b79651a3235db7d12ab0ced0259ab9989139937d6e98af2c44c1688813c18
MD5 537a38acab31a6422d440ded539521cb
BLAKE2b-256 909bac99422f0f3b073259fa598c7e619512e44e3ecd5a53ce5e4a7226f8c8a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bd7279161e51c06a8fe0126251aecb41003dee501ff7f4d5aaed2f36ecd5672
MD5 4c6c9fc2ba457fd413fccfd2618cf5f2
BLAKE2b-256 6b545eb36026ba9e368b13783b2021527cbc631ab575dda87cb4718a68f69285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00729757f889a4caca8799620b7464e8d491755075c7c9c6f861daa28b8800fc
MD5 d2aa43817637203f64fb9f46bd46e359
BLAKE2b-256 f9c8ae5c763d896ba6af9d5f3c3659e764a4be48590c2cb96431e9a05bd2f109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46c9efd6ad6bb096626931f9efc721835faa80ba7d0a91feae685cf307e1f986
MD5 a9154b20d74a7a426f7b3a3cf8443c9c
BLAKE2b-256 21000c3ea157d87a891e0a6185914236f9a45d73c2b039435eab1d9a09ce9b63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a2380309661e0d2b8f391a5beaadf7d56d8071fcd579cfc78b85f543c27012b
MD5 aa6ed866ca6fe447ba7f742cb52336db
BLAKE2b-256 958d41c87cca88dfea02407c96127953b80412a2bcb38977221ffc4be54bbb6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8598e63079166f5d86e73a4e2ff87699f22a1649ee19b92a74aafe9f6ed566f5
MD5 bb9fc8476c2ffe79083fa67fa0897b9e
BLAKE2b-256 a719fa77f728c2711386584db26499554b2b8f71db16c871e78e9a67a426d342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c5f16385839052ef0d47d217c0b923af6fdfe6d1036605542462cea2afe6fb1
MD5 f0dd18caa51986319ac0d902d5c74e76
BLAKE2b-256 83c83ec2eb60b3de0f2e346954cb04866e7d29bfac608f65a832fc78d9898889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea583caf586ce1796ceae559132e9903605c65f509f440d2c706d44909d70ac2
MD5 789786eef55df05270e55dd214562887
BLAKE2b-256 d059f35f456ae2bcefdf37f4a6e56eb5324e23fd77d0f96ae70b8a98751eebab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f0674ebf70d56c5fce3e0c0131e7f86a6190556ac37a78e0854d7fe2dae1285
MD5 1685e468e9a2cd9d44dd80ff54beb766
BLAKE2b-256 195d98026e69e5b17f73a3e2915fe4275e870e31c72a0f218a7332f1c1f51595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d71cb3dfc92af5546f6d7ebb8042205926d15bead608ded17d37711f77867edb
MD5 7f9ddc323fb051e38b2a39143ca0244d
BLAKE2b-256 4d799f6bc226fd5232e71572e80d7360a611be357f2b56d1882e387c1a4fcd0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 360d7e168bd3aaa0eea7cc6eb08be5ef933554cec61e495b3e28817ed6806716
MD5 fd0ea5627d431a011f46d676294afaf3
BLAKE2b-256 a16655a749ee52b474f5b5f9787d6b23f7429daad9cff66be6e06d7fa1c3ea21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4abccfc53ebdd6e6b7ece19c513332d111ef5c0a90f1f7e2f3ccd17ddb9b5596
MD5 5207c4291ce7df34a75032809ad32949
BLAKE2b-256 d5451d4225da6518536cf57fe72cd134ca871c4283815d64f822bd881e8c24b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8eac0702d57f8fb04531b6dc58000f2eceb9271fd32cf09ae68956564f1ce268
MD5 f2b0c44822ec25c702fa3095569b0668
BLAKE2b-256 939c8520192990141e96bb28974ebb6a14a4130ea096c9aca9ea3ad85b3b4276

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.12-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.6 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.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 304073a170a7ca1b30eab26cab17d3bca2b49729e36e18500dd48358843fcf8e
MD5 c20c80ecc551fde7187a65724e34588f
BLAKE2b-256 ecaf565b3262059795f4f97d8e40c37d1065888ae700a6762bcf79819542e497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 301c2f1db4639af490fc7f6a96a941e7a86223b347533e1fd4d336ab7274b24b
MD5 17c5cc3b36ffa9661cd1cd74b99f35cf
BLAKE2b-256 67ad45a979569c740127011ca79aa1f02edc606ba98ed3898eb5920fd0e85dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 287983c1c7c1a27a301946b5fe652a9830a279973d3f4ebc96c449b811eb043c
MD5 dd343923b40552dc2b61a3f3b0c026d4
BLAKE2b-256 4a6788be1dd2cc1ac33fa7cf1211e9d71fefaa323696a9a6ca998ef27575c7c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bb82b44dfb0135795b99232e8653f2db765cc4b259bc521dbd51976c5091453
MD5 50bc01ab92e9840ca409547790644671
BLAKE2b-256 a8a9d295009f723478dd7fa93b4cd6718036341ff0440390bfd5c85f730896fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2f87656df96bb7343736a30a0c9949b9b97dfac17d1f243fbfe4c6a26ba6e77
MD5 fc8e085e76063f5c59f8ecd642968b32
BLAKE2b-256 6a396bd0c5a5bcee27c3ac053074ec60d6520d3ff2ffea215ac4a04448a457b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9d4435d787751c80c486e2b4b813d9f6f8be3b5c566182ddadb7d35af93fac6
MD5 e09fb3864afa7d69745c2a74067e287b
BLAKE2b-256 e748047260b9321a04402443ddfadcf940098b90167ad7ce47c720e4a925a4f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 05d617992e47a45e748aa9f846b45bc572b9534c30761b288dd366f74b33c7f3
MD5 62b6d2adf4f716257b215eb3c00473fc
BLAKE2b-256 43542fea668b91580d0d1c34a9ed703c92272e268edfd2932f0d01ddf45c1087

See more details on using hashes here.

Provenance

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