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.32.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

grafeo-0.5.32-cp314-cp314t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.32-cp314-cp314t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.32-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.32-cp314-cp314-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.32-cp314-cp314-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.32-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.32-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.32-cp313-cp313t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.32-cp313-cp313t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.32-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.32-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.32-cp313-cp313-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.32-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.32-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.32-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

grafeo-0.5.32-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.32-cp312-cp312-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.32-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.32-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.32.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for grafeo-0.5.32.tar.gz
Algorithm Hash digest
SHA256 44b377a6c64015f313e1cf0cf2418206f800e732a213f515005f761e78c5a4e4
MD5 9a2ab4c280b1db8189b86014b1655f96
BLAKE2b-256 7bfcd0f5fcdad7b9b1885b8974023797b908407d7fe67756a381fcfcc71fb747

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2db0fff94a38a34f9c2ea5a2459b3aea074051b13164aab96485c31b6950281
MD5 649c6daebff05430ae1004b76d32c567
BLAKE2b-256 9068de66589f9171056282cbb66896a23807c72e90ef21f8e676cf1a96c06e19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19bea2d0dc2fe0f0bf34dfce0cdb73824801fc61e112514b573c51c5713f6430
MD5 db443083f0ec07cc38f3db7efbad8003
BLAKE2b-256 0293d93ac194d0b832f70323d7b5c814eea824137772ec75c02fe647d4d7afe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32b5ec4a135f14d24dcb052dbf0fa2db1a9708b7b15839bdce739b37f1de1788
MD5 c1918b3638f370eaa678b269e17f2c02
BLAKE2b-256 05c1752386f8b93466277ba169e2f61f5b36727565e70265fc87a84286ab962d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f437fad538be4918d6f1280e4c219fd5d0f3d513cea72b48e6f009eac637659e
MD5 abee0c95d6a5ca0599187c1a03657b57
BLAKE2b-256 8bea03e7061243f9c12a95203bcea066fad8bcf3e5e9a1f476eedcd9ce4f4be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72bfbdd89ce6afeae4e925b4dec926218589567e49fd2431417fa6c8de356f5d
MD5 eec5894a8404bf3d7fa1f1c1c32f6b51
BLAKE2b-256 a2d0382c177ca5297c150c0297114e26d1f73f2db18cfcc5a825d18cc07029dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 268e437fb99e192b61d5e31ba3957eddb5f353be3d2f840a177358b59e497418
MD5 54f6dd28d50e3f73d82f7ac96c608fef
BLAKE2b-256 e172902b228f67db8e6c2c26188e18725f54e045d3eb1a2c7ea9a00cc421aac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dd3a7faf4ff88239b50c98b22c753d2cb4b1f8f71f4230cfe96311f369ee535
MD5 0bacd484315bf3d21128ef2600c753b2
BLAKE2b-256 748ff8200905d0c4c8a5278545ec1c9077a25ea4584f7ed7b03c7e35b72ab816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a45fe29391e05d56b331be7906f9127eec3c4a163d41d1083c71c908e2b54741
MD5 352c36f528ca516446e80e9602a559b7
BLAKE2b-256 3aee27d9768d13a93407b6fab1d9a79f029ed9e266a2dc18bc8aaff27d571702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0631cc25dc084dc87f3a6374eb03df0642a5e1ad0f243d80310987a4b29f9a6f
MD5 8ef827637b65f9dcfa5c0a0567b2290d
BLAKE2b-256 34f28900075476a736245f54fb455165f17b90b4b8b0fdbf94e5a2d0aed28662

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6e3df91e71b1a51a5273aa814c8e190c806b0345f60bb36b16f0ec219e62952
MD5 f56ed32808ff2e4b0d9c941006f4d664
BLAKE2b-256 6cc3ddbf1cf01b6760654283e9442fd0aaf64b87208d3afc98811a0e4b6edc58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afee3da3ef485a90e1011bb289e6df08ea85ee363d2dc6141804f97f4828ebe3
MD5 9b475620e5aa6d0cbc5116ae3efb8fe8
BLAKE2b-256 52bd6b0b9cc4c28157c9a9821f700c80ca48c952ab794c42b9bc1c15947c92f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 696e49a1690027b4607e4aec1f34c94c4d52e1127c232f6af62d9bf570f82843
MD5 8603ba546575d72bc91b3395f1ba58f4
BLAKE2b-256 1ee38de0f6bcf06ec28094c98539af41d61d7a79b81f7d34876ffd927f095397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9fb9a51a3c6be4c7880bf62e6b223e95118ba497b717052be2b0bca468ca077
MD5 12184b24b22d28af26077347c74e3188
BLAKE2b-256 d25006d6ea875fe6f0203bcebd4c8463907766db462a2ebeb2c900e20d9e08bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1e1445b514bf03ab7025cada76ed866771c113ab4efef4060a61af6592d6c45
MD5 094f15b6917d696a44ad36cd7cd65047
BLAKE2b-256 79e0534d8def850a77e96eb66aa277592f26b5abeb45809488bce1ae67e93f68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.32-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.32-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ddf3cdf19cbf15bd3706ef7f1d541227acc9386b420c0581bdd2f4def8525b6
MD5 df9e4686b209b10195067f082d4c3fac
BLAKE2b-256 877a4aed81e5bfa35438974aa4c2a95cdbf282aa113b18b6b0bd389538bdedce

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for grafeo-0.5.32-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f954cae6dbeb5ddf569e0cfbdd266c2c2275e801236677f930f171570f2de771
MD5 6f4675cafeedfaa67f07eeae122173d7
BLAKE2b-256 6c3eeec76e1b823c300f13fa6b85abd7671046e8107c2bca339af365560eff0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0af468d242e7f02f96510c5310f368d77f6d9f04499c9f1cfb664342a36af560
MD5 98285a96de5bcf75cb407309d0c042d0
BLAKE2b-256 8e87824dfd4c55a6cb238ca8a116c74e5013f9bc34439a749473e016e07ffda8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cfb203e35527ef32d20af8537066611feab9ed8a9a0f861c576c537425b21d9
MD5 d5bffaa0ed0323114f75929ad64f4367
BLAKE2b-256 b29bf76f9e9ef07bbe281fa00025040809657ca0fe02812d23934a5f7154f3c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97036e4f005e3b54c788bce79ee4ce0906c3530b4cfa2ab758c71848763329ab
MD5 1b9866ab503a407ea0a9aae65e056845
BLAKE2b-256 6e690a74b100abf4b15214ea7af635e01b775d13d46c4b1421991b79b74722df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d674a368daeff3b3d5d81f941624fab6efa216327ebedfefbc89d08837c894c7
MD5 5da29feb84d4672302cf362ae73a958d
BLAKE2b-256 142f8944a3feacd2dbdb1d82ae88ab11258ce160fb685446f4c954b212a3e491

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b008e64641ef30921d6dd86eb1374ffa24d57f7cdfd3d06552b74d4f2e37a004
MD5 8c09a2c141e546930da022907adbe6ec
BLAKE2b-256 076fdd2d3750752ae12e77a69f20322fb98a8e96701ba90b61e9fe036a757630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.32-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2eb458e228527766e926a3fbca95246beda4a2ffc7f37fe06f9c081dda819b8
MD5 74e0e07cd3d316c04b47e781a26e44c2
BLAKE2b-256 13cb6db07eb334297c1c54e73f0fc26fa5d49c5cbb81d8fd9587466a20bb1fe8

See more details on using hashes here.

Provenance

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