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.25.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.25-cp314-cp314t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.25-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.25-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.25-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.25-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.25-cp313-cp313t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.25-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.25-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.25-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.25-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.25-cp312-cp312-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.25-cp312-cp312-win32.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.25-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.25-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.25-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.25-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.25-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.25.tar.gz.

File metadata

  • Download URL: grafeo-0.5.25.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.25.tar.gz
Algorithm Hash digest
SHA256 fd90cdff4194a00f9c086231e1977ed88e906848a220515b3d2fe872eeb9ace8
MD5 ab115980175712d8453f919a31238905
BLAKE2b-256 33ef49c90aa7fa77c91c1751a5ff71c10ac9af73984b20739abefef4ab22bc86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37f6dfd2501117761058afc5709aaed7cd5e42d05c042fd051b8a8b5dc084553
MD5 1e6e24fe2fbca2facf880e62c66b87f8
BLAKE2b-256 5bc3001104b239dffe6a1a432ecc7132cc1000747775b50d6c79a151a9b5d25a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32d0e9cddb2eae1e512875aa5cd404cd3516ada0810746241a8222ad5f29ee7b
MD5 330196697f143d811141aaa0cf0b978e
BLAKE2b-256 eab09c26445e411b9c687efacfb8531353f48fd98a02373b28cd12225ca479c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5d466df240c01f22be601d257eccc221f2a5dae39fbdc1d12b1f5ada32fce38
MD5 5fde95257e50db0f18339b3be0ae0c5c
BLAKE2b-256 43e969287ef88012aeaf1e4a2630b717642ddae829af2bbb75b02e8cc746be60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a85297324ed9c3036f104d509b92342a02c7f03e7a84aeb2b5ee5664af71417
MD5 2bb92cb764d10c9a55dea7b6218bbe77
BLAKE2b-256 547b0891e771fdd89ec79b7210f76496996aa1d12c4bd528e076ab37953a2f1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5607dff71c39746224d1fb04320b79330d86d98ff9a89e89917c37dd9f991abc
MD5 5ea6775fbd3fd1fbaa0e4c44ee1e04d0
BLAKE2b-256 bec9ccfe39cc3ac153e4c1d09158f74a413ee5bcce343bedadd18e7c5d192bda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 539a28b3f381e401e36a5b32382f12bde21e4afc2e56129bc2aa982efd6b7506
MD5 c71c6848867362445492f90310e33d09
BLAKE2b-256 dc1c3c1e045360ec9e1e05a4bc402c62c6e87b32c398163752cdd3ddfc813a8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a81c5a18ff1092fccd4f571a909c680b699c975d7b4bc9526e5ed902123c0e8
MD5 f7fe3ba7c669b85e250fae9c82de6617
BLAKE2b-256 4f362098ea4d1cf6fd5f1b2c733eeb9c49f810ada5633f64495aab00157e455e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2764d194b3947282bc0499bb8b59d5217366e579d68abf5dc18ca20f40c9fa14
MD5 d44540a7b86e6a82c8cd7b52dcf0fca2
BLAKE2b-256 aee61864d30546eb67c6801ff32906914e7cf95dca88679b227635b9e14a0003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 647217e24b4df89fccfa36484e40bb5a586d069248cefcc0745c7a5ba606b5a9
MD5 16cdad297da985547c224727fe180d82
BLAKE2b-256 e6196df21c3eeebb5bec3ee1c85be2f431e06c6e855c5b4daf11a4078ca01493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27c0d1b31adbd0b1d519c8540c4b2b4f28dd79e75f3c050c219387a4d2f149d0
MD5 053e6d258cfa877736a004af9b5635dd
BLAKE2b-256 740684de1b5ac1f0dcd1ba00962bc57b0c4966a015e6b5454667cf18a3fc3f26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ac78646e1c840e55da2ba3e8f5cff9da96fc590614591fc725abd0c3d118d65
MD5 169d6a846675589a1ffcb5a3ebad5973
BLAKE2b-256 c493d85441667df3b50a0d58124bd39e9bac840906136da351491a07236d784e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9892368a6779ac035e3957bd256c6ffd83dbb1a4cac5974daa55610c81feee6
MD5 b3897b9efc88d574866974b873d309ad
BLAKE2b-256 c3f7da458b29028441afaee7826a28b8a0fc1449c309d327253d73a99bc12e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 917b9dde43f7c3b6cf92947fd869ab42fcddf9e963f44936d9d800c2c5127940
MD5 dbfd718a0668c5bc53782276ea0e17cd
BLAKE2b-256 0ef2f976fc4f730aa5f957dbbcc2b8b41732c716e0ab9f00b3cfe477009595b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a31cf7581063dc2f957b476d7a22a595dc46b6c6ee30db29214b8c890c89518f
MD5 12bbfba1d22109dd77cf1f0d3ee4d4a3
BLAKE2b-256 9b48557e0a00c65c48c06d7e5cf3323cd7486b3189811d311b4d234543851f7d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.25-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.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 32a97346ed68b5744fb3e8b0fa6ac3ca8fcb5775ee11c71651fb07bb74665d2b
MD5 9cd87211d7f26c6658031292304833c4
BLAKE2b-256 b065df81be8214eb1767e4e6ddfd0ee0b43f11b452e19ddabb9c1c1525dfd045

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.25-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.4 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.25-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bab1671375a1d8af94a2da676d59fde635022b02a9d29fa073e79ef6c54a34fc
MD5 19618425c04716554f2120714761ea3f
BLAKE2b-256 5deab528fdfd254147691bed72dc7bf99384f0fa69fbe1532014b34330b4e6e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea185c14eddd96d4fec1c6758439f2f640fd60470100b8b0faa2d16a29f1e104
MD5 49c5cd08c758d97acd865863ba696fab
BLAKE2b-256 a0eabe9638b2f6f68e22ffc7b31230d25437845a73daffbff40bcc5dddbbda04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d28723894c49b8b4402dc40da8af89ce0b9d67ab5aba4fa9de7280b4554642f1
MD5 f6d05a04ed3a56f0961f4c0d7efaa54f
BLAKE2b-256 ef600e5610c8691ed1487d8804d8726a486f41a484623ead36c7fa3a2cea44ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aab5054c0cdfb8e0426e702f8e22906065d4cff9156b84a17b5d24f5695a846c
MD5 a3fee807163f5400846d16c5d43213fa
BLAKE2b-256 d0f5194fe0cdd805899a1796da3f6b3950e285981ad8c45594264ca37814132f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24bd3b583c4be1ffadbd0d93084b15af56d9d2a32c2f923647b41badc8350f7c
MD5 cd92d547aae799d5335733c47320cf7c
BLAKE2b-256 fd42ff0f2ab9e88373dc1001e299bfedd63b5ce8e5992b3a47d1bc20f6d1a8c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33aa7f2a7b33854ee24023f506c1bb2daadb98e8da50f3b74aab3ece2732ac2f
MD5 617fc3bc0d70e4529913603479b3106f
BLAKE2b-256 19f6318c0cdf4f19e26d535ef34f1d5d12322a555f592c43d5be0c84d1ed66c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.25-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b2f78b3b8dbad8322e49a54667d5f0c44c6b731213a25fcc282485c69433f33
MD5 bd397651379de83cd87039c61d4d601e
BLAKE2b-256 3c45c0f63f93e3c2b5de8b403900bbe1f011d56f66bcb082058493b82f701c58

See more details on using hashes here.

Provenance

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