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.27.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.27-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.27-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.27-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.27-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.27-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.27-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.27-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.27-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.27-cp313-cp313t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.27-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.27-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.27-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.27-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.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

grafeo-0.5.27-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.27-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.27-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.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.27-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.27-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.27.tar.gz.

File metadata

  • Download URL: grafeo-0.5.27.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.27.tar.gz
Algorithm Hash digest
SHA256 7782b777416fb9011a80d0630afb1d78aa8ae16c9b5f83fa4c7c6cf530b7148e
MD5 a5288f2c2564b9983f2611f728f6628a
BLAKE2b-256 4ffd7fb7f0e74301cbb1dafd8a9b18b5e75381f01c24b4e4b43c06cdbbbb3518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f7c12b59b6a6cc974fb162e905a52a20a07ca87b1552dbfcf25824e2580ca17
MD5 c37262e7eb34ccafb03252d152d005aa
BLAKE2b-256 6b0db2b056ef8e08f6910ccbafe143d3dbbef62cfe6563bff50aa03095bdd3f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4416a8ddd2fcc86cffd778d6ce2ac13aab52ccb43db9e458f6a70b3e7f0885cf
MD5 07db87ceb4a95048b77de07403a89305
BLAKE2b-256 8c71df6f68cb6e4ced388c26a6510c45ef9a48b601840d926e878694397e94d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61094f8bc7d97a1cbcc90ab9aba69ff3ee7366dc858bfdd3d2bb6efcce477b05
MD5 3b19672ef9871dcf1ac98a95bab26946
BLAKE2b-256 f1d581e215bbc73c66bf228f5f18269482edf0a57f11ed7e87285823babec5fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dacb613e61f06dc148da89346f4cedebfa9287e829374b4c9e2d6c56544d95a3
MD5 dde05bb8ae925e650c3c4f8c4f783752
BLAKE2b-256 22ca700d6773956c93176076d57cd5b93094296220856233420f7064111b209e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf025acd6d00968e2133c6e741c2a6991133dff71f64f206d0d689adf96138c1
MD5 45ad7367f8b7069742fd474e79b7e0a5
BLAKE2b-256 20da18f5c6e27a165857c3630e7e6756e9152647dca3c8123cf7f6f93a23787d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3df386a71769acca495eec76d5b5798f462328bde5ddab48cc9e277ce32dc766
MD5 e7ae0f849276512b15c853034d5a9ff9
BLAKE2b-256 b5f58973b91cb1cd75d7e54dd1494faaf408bc88030ff0eefa6cba2303869957

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e0cdbc47b47746b35cc141a417becad3b6ac89dba9a375623628f2471cbe7a3
MD5 79df1cb252737077b9bc98991f97d9e6
BLAKE2b-256 fc2804c1f96385d5837edb18bcc88ef47c2169009194c13917e926f1c7e56baf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0177d409de0e3818822e0a496162600eb78f1ab5953f20f971728e6fa32e7c9e
MD5 a10225b12d3388d02c02845ba2be98bd
BLAKE2b-256 f3b70fe9c7cb494f53001885f04f37893ab652e2cb16372ac3882c23de741776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 011b3e381918bc727231a645664c1205da330220b1c0abb2f6dee51eb5f6dbfc
MD5 4fe17dff18305bf5dc8466fe10e37f30
BLAKE2b-256 cdbc13f6bbba34a21092cd69c44127cf7e8f7776fb0f037043a571876aa5ceb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5bcba127dacf24689218833288d27cc5d538c6843486c4a866c5bc8634a8a86
MD5 2bd11b34e70c165987dd0848a1a7dce4
BLAKE2b-256 4fa172e03ddf11d1481101e5ba02bf1c72ee7cc3aa445eb8a920b08cb2bedf83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 209fc4b279d0d640741ef5f664a56dfb6e252cfd42a3610e662798da1c777c40
MD5 aaa166f60aa27364147ad70eef1292d4
BLAKE2b-256 08211ec008a88dff66db190ec037fbc3f42387c8b9bef60010be6622c65f21d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27ebd41dc6a55d1a9dfac5e0bcdc9bac58b9a04e619fb18c40958ac8123cc5d0
MD5 6c6c2b58ca11651c6a92f2d684f84bea
BLAKE2b-256 aa51a13fb0d5d14b56dc51dd434c13a431b36b6d5ed4c2d8ab4ddd7e6bff39c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b02be2540af5edd5d689c5434000ae31670c422cf64500744db1afe6d320e179
MD5 b94a0b6aa6d9f467f9ab13dc8c7db802
BLAKE2b-256 d358310852589034e7303e0b183d070865c173f3d760c1122a71d9f7a2f56e5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93afaaed7e5513b1122801831af97ecd4a60af31db11f08abdc9f2fb26932df3
MD5 b6671655e1df8f3312d91630e5a0e23a
BLAKE2b-256 7699fbb42b35acbb7795ab967a0e2420c64aa6fe580b9d337969151391f4f792

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.27-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.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d8b531ca7a8a4eb140c6d0ef364529188312be49a9995884432f1d1d46839da
MD5 65ea8807e9fd629435ea0c5c6ee1b68c
BLAKE2b-256 9937d91786cee23a924d502811c4e359b4e36e15337090765064a0e7f0627e29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.27-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.27-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ca71b30c460463869c06e0e278872229e48324d056ec409b58d9972fd01b393c
MD5 b65b165831477f68fe818e96f569d11b
BLAKE2b-256 d89dafb88f333a43aed816146095c71483ab324a5cf3ed39e2f20fb25ac795a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e21e254bcad70dceb961ed2260f4b5609d1b9d9f4f78214df4e230ba9cee44fb
MD5 c8d48fd1baa99e6e3ae109dbc67d6055
BLAKE2b-256 4502fd66dcb270b01ec7074609bcf2d0b28e7059e25e5164caa685de96a11519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3c9d7bb511fe7ef3579e1303b9a548ab298f220e8849d1304bc98af62b25599
MD5 2421422b66f98da23f4f084fed277854
BLAKE2b-256 3feb4acdba8aa15f350fd76272354de750f6ca64d0c5bd858aa66be044943698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b53d32174c43341c17b7ff5ed8b24e4f6ea28e4e5f05ef7fd756cd5d596941d
MD5 e10bae2684a485c0ffa2a52953198060
BLAKE2b-256 ebfa7a01c9314ae781493414ba3f93b61ea192ee58be29511713f44aac412bb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7469daab3ba54303c27eba2ee43d740430f4e7394e925faeaac69b5b7de8f3e0
MD5 d335c1b7a74541278904736f28eee519
BLAKE2b-256 1725f7e12c63bfb1944ff0627a99028f9631bf9076654ddb86929b6388848883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23988aa87b179f6a1c1eb357fb5916290103058abb810530c63e8a39f42eb864
MD5 05632ed9421d33a705520f7c548dcf3a
BLAKE2b-256 e21e566b115684a1db12382cabb68969d4595ef99d8e19bb25d199527f841d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.27-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da5c8e63f4474088decf667a8ab85337cc9d330e3c340bfc09ea90129e9a3066
MD5 1322e3ac21226b231339910263a13ae0
BLAKE2b-256 81537a1c21ca278975a1adb6abe1d2012cb27f243a547c5f99ac5843c8767cdd

See more details on using hashes here.

Provenance

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