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.23.tar.gz (1.6 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.23-cp314-cp314t-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.23-cp314-cp314t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.23-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.23-cp314-cp314-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.23-cp314-cp314-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.23-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.23-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.23-cp313-cp313t-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.23-cp313-cp313t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.23-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.23-cp313-cp313-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.23-cp313-cp313-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.23-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.23-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.23-cp312-cp312-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.23-cp312-cp312-win32.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.23-cp312-cp312-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.23-cp312-cp312-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.23-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.23-cp312-cp312-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.23.tar.gz
  • Upload date:
  • Size: 1.6 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.23.tar.gz
Algorithm Hash digest
SHA256 0147eeb825743c2010208fd95c2930f93a05271fa2f8186153aa91bf37fb2926
MD5 ade78483e445e144ec27f8a19806aca2
BLAKE2b-256 7b8c2a7376b9f0d917d0ab184984e903d37f2d2f15a4a8eae18cce7c742a52b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15b9fd746b9cd4ba0e9d071d0ad9b59e5c3b9b5ea56e25d4e73e3a4679ccee38
MD5 dea64fd899c53c28d8b30b46489db3ba
BLAKE2b-256 1b5c7d2bd03116c07d60dfa1665a78c8d4397c08b4c32e8530933e20978ea739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc33a29299fcfa254ed1a71d6309a44c7f251575f3b80dee49328139e6937c6f
MD5 68e423c45cafcd97de0bbdc089ea9aa3
BLAKE2b-256 c3eb86ce801a25a21994e1e22e09e2290ee8e81cd8acd85f94d14caca18ea2ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01f5a9d4de1175a7999afbe08e0885238bb94f18231c924d1ec23be8b1cb96d2
MD5 31fb233e1a1c6cb60b5ac50e0310b9a3
BLAKE2b-256 f4cd5dc467e2757dece9d86dd5813f14014f1977d0d17352f3f6c33fb8b68224

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df399038d114d7a2415ad58863942f050bbe6173d67aed1462fe91daa57cd420
MD5 e5f5eae138877a850a615c1aee31d67d
BLAKE2b-256 bc4e6461a5521a8cabbc0334b9fc67c20e105e550f46382b84d4d6a9ab4bb456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a463879c3a4750be9d2dcd35cfc8b6fa4e0bad5697b34163a5599ffec62ac004
MD5 3738aa041997bfcde34b0ba98a1c6322
BLAKE2b-256 0795869c1b70e7a653d8a61c9924425a7ec7eaea674c3cbb078a75cb57a1c679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a10dae9c31c1c0431b08692486f65ccc645f7b0d5356bad5741e3cde89b38537
MD5 6e21d571f09c6cf73ac2df18ac8b8fb7
BLAKE2b-256 bdbe9433e258bc765dc251ad96e693f5f65c8f88c973f2b36da8bba068983b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56e025b465e7987c75e04ceaed490bb1919b62cef9ad0b964e7ef2a1036b2791
MD5 3277ca4f5384a00c0e69b35a2c095f9e
BLAKE2b-256 dc3dc2cc271e9d6f35a0f57e6731273977ea791cada3c175f924e1d406e568d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9848b4a8e73bf33c8c1a0644530d3fd950a68b609ef2644c7fa9fd015cb62d16
MD5 deb9f24c1878472db4849101290b8034
BLAKE2b-256 1d37eb13f700c59f31d48469d19fa7e83d329d8f5c089107bcf74e83d4049b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8020f380e07889393f017b2e862c2b15dd41a5bc4f8c981aba403a0b0cbf0c0a
MD5 3e563c9982eb53d8908f1770b4e25d99
BLAKE2b-256 a6488ea5cd74bc7481d1f131ad18252f23cf9f25786d44176878871a1c2d84e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f68e7c4dc91e1804ce9555c32718b45c68559e26962de9251ec8dcfa0227ee12
MD5 e6112cc9e35cb9e5cae208102fc493bd
BLAKE2b-256 06c36dd67f7153904ad2748613233659e6e4bd1f7e6d35e2f867e3e1c869c201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fd3b440ee32374f82834c6b30f64c2d4d6b21f8d6947465ce8454791e3117fb
MD5 8d1a6f87bb09c85c24313a099a7f4120
BLAKE2b-256 3b6a1f7d35aa7b9b2c5b2b89498a9d0496419bcf25c16b079cf38c960455f4c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 def698decd0fd623d6219270c6fa20b9bf195227e889ecbf084198776c28d90b
MD5 627237d8df4bf895bdb30a7b088f1cb9
BLAKE2b-256 c519aa946c6a127598ef5d85124c249f7b52536d145235e0382c96c7cd6cffb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17a3d8e20eda906efbe5d4577263d76a96b0577c294776460106529d65fac523
MD5 c07ce327332267a864ee989c427891f5
BLAKE2b-256 d058ccd7ca70f4a89f4318917e422e9be1d872c92ae8f08056ae72842f2756c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 058389beae20b50496274949a07b8f0f07b86ae44a373073510da9951488249b
MD5 e6a7b2e43beaf596457f0bf6d5459010
BLAKE2b-256 39ace9e8c0eebadd3f8c7caabbf084ba5c37d8199bdf798dcc03be71ad5a163e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for grafeo-0.5.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bc2ba55232958ab71acc4e138c0faf3c20769be575b27d787708edf5daaba4b5
MD5 84ec8a625546bb6d015e520bf6bee2e2
BLAKE2b-256 7fa34f42b333f16504a49743c1e8c3fa5e3681a9828845471777477e27cdb172

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.23-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.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.5.23-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ab67a58e02f7b6924839f1cb864740e19a73657bf263fd5637b535b8c73fff3e
MD5 112634fca834affda4de3de3c9e47c74
BLAKE2b-256 d03c5afff432865b9998078b903fad18c476f6360aad58b0d1909f80b70fdb66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 518947e51dff5661b5edbe5522dd8aa4ce85f45ce8984344a6993082e7d9903d
MD5 81306d55bd9bdbaed33949813aaec4f0
BLAKE2b-256 d72a1d6d883f1d03872f5c1d7f801198e54bfe26674ce99d920e55d7bdc8e671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36519dbfb35cfde3e9b2caa163cac2c1fbefdb3d8b176294e6ba2bc3cf2160fe
MD5 b5461f91e48531e6c0c093324c56ee54
BLAKE2b-256 b1dba0dbc5174c3406739d3a01b23cbfed2e012485d7407d77e133b2c2e00964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61fb43d0367f7cb6ebae1adb9e824c7b31321656231357fa8bd774f96e155dc1
MD5 3672ba7ef681aa9b867bc9048330fc79
BLAKE2b-256 7bc9cca0c407268ebcc451bcf6a66948619a0c10cd3c6d5cb00805594fc37733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dde0d930f10c42b1fda1664de5cb627d05590df5609e97d8e42eb16d96423f20
MD5 37dbe95f33216b27fb52dffe4d9d3282
BLAKE2b-256 8422e6ada6acbca9036ba99964837c7150fa9a282e2897d6e1af372846570536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c083ee47b1a64fd933d86cd5ca6b1c8a3f21e88344859dcb63737c956b234faa
MD5 7dfd2ac919336a18439f27be0b3593cd
BLAKE2b-256 f27b1a5c01d41b584ff875841cdee385c6e6d0a7619fd80b6bea5fbb6c324dbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.23-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b00774f36c6183f7dd8293ccc764991f203b93be24e4baa9e9fedc3fd16b9d0
MD5 bd07906762af64a655dda55a98377ef7
BLAKE2b-256 4e08aa2ce83461a6026a38991d111dffd562d207a1f206bfcf3e34cdc22c3c0f

See more details on using hashes here.

Provenance

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