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.33.tar.gz (1.8 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.33-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.33-cp314-cp314t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.33-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.33-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.33-cp314-cp314-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.33-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.33-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.33-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.33-cp313-cp313t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.33-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.33-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.33-cp313-cp313-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.33-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.33-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.33-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.33-cp312-cp312-win32.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.33-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.33-cp312-cp312-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.33-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.33-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.33-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.33-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.33.tar.gz.

File metadata

  • Download URL: grafeo-0.5.33.tar.gz
  • Upload date:
  • Size: 1.8 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.33.tar.gz
Algorithm Hash digest
SHA256 1ddfebb7df0a1dfba673188ddb297b47a9fc278236763b7a487acad2385a435c
MD5 50fe2f890783935fa8d1cf062176ac30
BLAKE2b-256 f92088f3a452de09b910b1a274f46fc1a52e8c924e8b9e5d46bd4675f547546a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d8f94c5bbfc2e24d102e51926b1efd897391d5a9192ef84d1e83cfa0e469414
MD5 23863195bd6a7716deb0908e456ec318
BLAKE2b-256 43102c7ae18e266f19446e6c48c12d7bfc534182269746985fd0ac0c3dc3523d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91c613e3ac7f7b8d628c3435061d166e82c0031ef9e3e244b07dcfd6e0415da3
MD5 27da4dec9663aa714b549bcab14bd889
BLAKE2b-256 7d12410884b2943436d5be2aa2074c61900117161bfca9641fb9409a809fd912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f09b65486a583c80caefc53a2d3ce236ebd038757e67d114343e21fcf9b1e53
MD5 09818f6f52b05737fffaa555611d0e0e
BLAKE2b-256 189ba8f85b12681321f6e1d4f8c71c0f4a2b76da1eb856f2178baaf626695c64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b15083d3577a9b2cba1817a57df8428c100d0c9df07694a983cece763ac87221
MD5 d38546e386dd46e91032bd292d84053e
BLAKE2b-256 f49e711f4c78e9c5fdf2cf85ce69679b9fe465ae703d018896b97fcce9428ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fca1b655c01a0457ba643bd990abafc642ff0443623688c2d5c03efe7c7a315f
MD5 923b9974a905b6d1b055e68f3b14beeb
BLAKE2b-256 50a724812314b991e4174ee71567ebc28a5f2e5d18977a02a7600a7a87121cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d39b01c016c6216add01ffcc5ae33cc6afd3025f0bc7c3d0e1cd377a7259027
MD5 acf82ab04a167ca98c0e7a4ade276fe9
BLAKE2b-256 75daa18449976204d75311006b95c04dbf54f4399674d632818419e86f055b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb15d32e9361fda26472feb9b88b93b1f21dea242ff337cdd9f3cb1c472d0f4d
MD5 4a930b3354ea7daa5082f6b8583e9608
BLAKE2b-256 215130361cd59288bc6468ad5f62c20b3090e1b04b75ebc0edd3bcf6e149289d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b89527d5975a8c644e89b31c4c30b9b178957d60b86ea3db30a59a3d95b3d4ee
MD5 f553303ffdcad889c1bb02fd985c4998
BLAKE2b-256 5e42788f40f556474db30d09b7d2fcdbf3e391182acd1c0a10e1600eff5d7478

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82c98e89d92261d8a4f1cfa31c6e3e60f94a525aaf7d3ed12b2e1b5f07f36f47
MD5 f24286ec61798413e2a5773ba491ce81
BLAKE2b-256 b29a78edd05b278159a7113573bacce2d1432dccc27a6f78b677806832462916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14069f1a3a45c476c73c0fa5f5ab97ee025b901902833d12cb29e31fa0d0265f
MD5 a2ae6eb8865f5f740c8167d3cc8d1bd2
BLAKE2b-256 7ecb643168de4e04b31cd510c2df8871f68dc358c69125624e1d919cb3b5485f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d5411ad77176c65e2fcf4a051dbc3ec16f954922254e1075e82d2da970bfe03
MD5 0b32678e1cd387b172b0e9090677ede4
BLAKE2b-256 dfc9d0fc8e964fc1533eca3ae370af32c2376c4c8512fb84854fecb932958497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89fac0904cc1e0716c79d513e36d19eef306fc816798f35af364f91b9da7f201
MD5 2eaa7267669a9b8c4ac4857af3bdb299
BLAKE2b-256 3af0488e23a6c926503d852952ddc0b970fd8879ca2cb5e88dab7f6a8e380a15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cce38ce1b961d657957acf0e30bfa02c704734c0447c74bde4ec61bb8b9a9240
MD5 c95c648a5288317986fffb0cc747b8ed
BLAKE2b-256 b931f6706e671e580a49ed6c8b10c0fc1ebd99f7ec9587957a437b9c8b8c0ab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c3c939b6425ad331b17c58ef01f69b8570fc693d2a62d946d3d7722c80fa7c3
MD5 cebf54d50bbe468b8bc4755b6057227d
BLAKE2b-256 8895900eb6347a6651bea361058eda3b43caba97f32e71ab33829c3a7907846f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.33-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.7

File hashes

Hashes for grafeo-0.5.33-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1dbf52ea4a6ea7d7301a9e475e0f5c26dececebb7946696760e15b632cbea499
MD5 23437695fe119f2b9014eb792f35e65a
BLAKE2b-256 d5fdc3d3f8555c0009bdd61d20fc3f44afd13b74253138c66cbb1537e0891239

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.33-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.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.33-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 712f05563af82511f00228922d9f0d4b026a6f34ba128e0045d096945fd83306
MD5 d9a88d47ba4bace1619c0c90ecc8fd87
BLAKE2b-256 38cf8c96a9ad223d027c8dd599dc8c2850bfcb4ca36513716029ae72df8d86a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 431bf18bc1f884bfe9d11d1c22c5eba148de73875cda063f5134b43fd043217f
MD5 df932b722ec7f739f15a399bace93930
BLAKE2b-256 f1c1bc3698f204664352b5aa3f3402e7aa0d6b12a5262f854a465bd417969739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb8f402f7677e4f455fe3dac74609390e2cd2ea8ed60beb70e9f05c74ae87dc3
MD5 7c077dd7ee6cffedc9153935e0691132
BLAKE2b-256 709e23c660a06395ccb3b5bd03686ce8b086bed72974d06be082a635dbbdc1f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4c2caa25c1f8fbb4933a5be6fbfb70850b0cb806d7ae3de3a7666b29475cbdb
MD5 7cc968878e91825ab2ab558340eccb98
BLAKE2b-256 3cfda62f24f67dfbce93305a13039c04382b7f9140a744bebb00af7f86a42a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cda2246465025d2575a1b8266529bc52eda7f4e8dca78c4246dbbc7282a00e03
MD5 d057536c86460f1afd825493b6f918a3
BLAKE2b-256 0f8aac9bd4175787b6dd812270cbe6cb6e5bae6c25caae53acc172bb9eb4854f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9294d3e72bcba460842be6806e7124667eeb01f4cd1d91f97fa23ec2e561ebc
MD5 c328bb1ca99a71892d10587c7cffbfc9
BLAKE2b-256 27b640778c34e7220b72a36add66157c93f364adeba841625f41df1586733ba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.33-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 562464c05b665fc8ad7ca30e2ed4a979e2e7364558efaa7ca80af7d6a12b701d
MD5 f9a5318a8377f1b45550bcfa42979440
BLAKE2b-256 b5dd5c2ede77a6417bcb3f1a9788563c7f3e5048ee02fbff65217e81b27237d9

See more details on using hashes here.

Provenance

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