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.29.tar.gz (1.7 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.29-cp314-cp314t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.29-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.29-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.29-cp314-cp314-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.29-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.29-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.29-cp313-cp313t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.29-cp313-cp313t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.29-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.29-cp313-cp313-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.29-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.29-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.29-cp312-cp312-win32.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.29-cp312-cp312-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.29-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.29-cp312-cp312-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.29-cp312-cp312-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.29.tar.gz
  • Upload date:
  • Size: 1.7 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.29.tar.gz
Algorithm Hash digest
SHA256 325b0415bf783f5707111c243c14b668d13495009fcf9a9fe61b0c4a4508bffd
MD5 02f1faeb4f00fbd84d2ec0388c424d0a
BLAKE2b-256 55fa7f3ad4a03dc6b2a5305c467e9654697e6525c73968787225ba1472567ff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e68bdb7bf0ab32eb918305593287a979ba6c33b9e172ccc1d28ef9baa2c2008f
MD5 8222be1ffcfd00235b576d3822784d57
BLAKE2b-256 6d16215d5539b8e72ac0075c3c32eb4be4a2fd8ae0c57c5863d4f0419073368b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4cbb80ca0b8ca38674daa53df69b20cf456015a0a2a5bb9e4ef7e5ba04ff3d1
MD5 0efcce3de282b3a0e3ab443434f1f5f5
BLAKE2b-256 0fb71a1d0273795ccea4af9b4484c8f74990299f13fb95938360902052c65892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0452a83a1e357744c6311d5651a02d574f9e640f0f9129b7d1608f036879dfd8
MD5 55364169d36cdb2131cf08ad4b7ad04e
BLAKE2b-256 4acbaf1814c7f3a268a864a627e9874e93192efcb0d34bf7d9c39c81eab8405b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5efe29dd771b72aee0d1b9a315dfc6a23b1251d89feddb03968289a7616a3463
MD5 7a36d2f3c12c5511a645f60465c68632
BLAKE2b-256 e11b85f1aa234c982461565f457984a8e3f96606db8a22e29619e04a01f7a6a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 721a816cbcb6e967049fef888418569fefe6add16b8570ad0526f1ec859b5f1f
MD5 7978a47d7bbf534ab96de96bdc10a5d4
BLAKE2b-256 a9e8fd12879af3232ed734ae8ca22a9ca7cdcc2161a9e20fa8b530614a985075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc2ee8c3fccee41a58fcbb06c21d229bf61e5c63a09457d6fe62feec5c2d4d65
MD5 23d09031008e72ac66f1f5a77680cf65
BLAKE2b-256 63351034cdeee308d9ff26381370224ba6f56d08709171b30b8944c2631d3b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ca3ec402464375ae711461ae4d26b6ebfca1bbede48543be1e4cb162a0b18bc
MD5 742519f14d35ddbcddeb20e53773efa5
BLAKE2b-256 f0f962fdc8341d9a1bc8c88b976b1b2a4659f970f1c2a1246cdcfd27156a5f55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1f83e946cd4dba9e341f5eb245eef38195254793593a8847fa028ee243f2ee5
MD5 9838a7906c8c49ed4fa83fdfe6595a07
BLAKE2b-256 ee8d70367f7617808286a12996bf010bab9d8fa82daeaba592036c3183f15da0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 801f0ca683443f8b955ddb4a105e702d3c50692c1c42dcf8aed77b9eb3ef40da
MD5 a9ecf429e4d5d83dbaa59ed73fdc35db
BLAKE2b-256 6288daba067294c0cc52c78a929cd080f841b474d8a3a4598edcbd547d721262

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79247eaf33330172f5b11955fabf93a0c0bc25a9987968c38e4bbe30b6451c3f
MD5 3b8fcc2b77801b2d70c7673e827d1870
BLAKE2b-256 69f4d6700e17f70013945fd1a188a869cbf05f680e5521b381045112b4a04d9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7327b412a0568e63c7fb7b6ff630a2080f3718fdf7e26c43141b4e02b0947661
MD5 43c0c4aeba63c88218a6dd3bed2e0ea1
BLAKE2b-256 c6141960fe0b7c6be320c195220322a00856ce4a257a9f3437f2f1d78b116b5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93428268036b419588e1d0747adb943a30517ea2fe1fff77f7afecee7dd6f155
MD5 d2aba33a59d26b361886389c47519b9a
BLAKE2b-256 5a2722971b409cddf5d7216da5553e15a8d69efe3949c63ed15e9e3b8e0deb24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0dcf7ea90ed2d3c94f01bb50bc4e3f1b50a70d0ae1268b99c6de35b5b2e4f67
MD5 c70704e60789e9b689828f805a6af64d
BLAKE2b-256 f9da92587ac939a8936301a11e6c630f55720d33b11410ebd2baa747242205c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83fb10974fec3d56378edd031f63d653308324a0e86de5da8eaa6b2a8259a1d4
MD5 990d75a7fdd1027b65d6b2f889ba5a8f
BLAKE2b-256 1d81e556370e208c540f8dc89173ceec7fd778c149698123dea16435d0973520

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.29-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.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.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ae7e198270a482a67c5249c1c7c4a6cd0f8e2ba7c65eb0905ec9094d1b8ab7b1
MD5 8946ed588336b791254685bb1eaabecd
BLAKE2b-256 387db50a4a2eb32821f147f2b070ce44a3a3e456586e8944cd366a2bc43c1b1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.29-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.5 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.29-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 27ce2568d63193f57dd844c6413c7e846da3a4346fc328f6f880c2e0d5f1647d
MD5 4883d78867161bc53b91bcaaf4caecd4
BLAKE2b-256 5abb6b466129ae58d90e0bdd3ba756a1a42df6dd6b653fcda44f744a0ecb5d88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9699a49d7d65da2b373c71927563afe938a8c73aaf75ec5c5dbca5556cbbb7bd
MD5 bdf1fafa417deebff571e0781094bc88
BLAKE2b-256 5e01697b17c224cbc7667c5b7252f4c0db84f0dc0f031c630a427cf0a2950bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 873f48e9210a46da423e97a1bcd551256aba6ffd6617d6fe63510c5eaf8171e7
MD5 cbe702f1ebd96873db94ff9562fe822d
BLAKE2b-256 cad43057d238931280a5f04f028aa19445cad7990abb4c48e1e668061717ef26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4685e32035568da416cb2901c72ac260439bd906bccb872bbb28b70d71e1fa35
MD5 32be401c39cc46f401bed4ee14776627
BLAKE2b-256 c55cf3cbed5777616df94ee080c8487ba851a05e591790090a1e411eeeca0345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc894efb726131a1be4800c6971afd7a083a16b0a91b1ce184aa9977d587e5b9
MD5 d670c9188aee9ab7415af482c3cda9e0
BLAKE2b-256 e6796f8ad518be9d2d0b04a8b032573d71e00fe5c1d6f903a8974e47db2f8c2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37fc90e08ba83ed54d461888e2133fdaf18f02a76bacd0380fbef070d817ac2f
MD5 7f3aebf532023a3a2c98e514c6a47ed1
BLAKE2b-256 92a1386f62126a87d1c83d22ea216df63fa0c0d5c34cadf6fb911f1ba15f794f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.29-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3123729de8948f1270c1525e187f719cd92156bf2b2fabd7f062a4e303380f16
MD5 98a54f04f515c98c5a0dd5166c0ee9c4
BLAKE2b-256 03b60a0424553d2c6f8ecec0d50d50a4cf1fdb1a69f5a7263027ae0668c76690

See more details on using hashes here.

Provenance

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