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: 'Alice', age: 30})")
db.execute("INSERT (:Person {name: 'Bob', age: 25})")
db.execute("INSERT (:Person {name: 'Alice'})-[:KNOWS]->(:Person {name: 'Bob'})")

# 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_with_params(gql, params)    # 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": "Alice", "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: 'Carol'})")
    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.10.tar.gz (986.5 kB 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.10-cp314-cp314t-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.10-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.10-cp314-cp314-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.10-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.10-cp313-cp313t-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.10-cp313-cp313t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.10-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.10-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.10-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.10-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.10-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.10-cp312-cp312-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.10-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.10-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grafeo-0.5.10.tar.gz
Algorithm Hash digest
SHA256 1260a31f0992125c042c030b86c68027ea7f79a38c0d9096243f29540db274f8
MD5 1eca224c99c8345fef2de72a709c51ec
BLAKE2b-256 736cd3ec3dcf277e921a0de38d0691664dabb536bb0ef91529cfed528652c355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e49d31076b7346e2723bfee248b14adeb83255ac037d0567bfe20a18012bcef
MD5 42ee1a3a1c75475298acc648e922db2a
BLAKE2b-256 de3bae4a00dde432f4dbb9677e94035d94e5edf1b1b36d707f2c889a9cc89398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ee814ef6fd4316a2e029d08838c92617e594fc8ee706ac53b978a85b292d593
MD5 d2f139639fe196b6db193b6cc0947daf
BLAKE2b-256 d035b122b2c28aa9ebe8768ec17855f5930beb9039391912331acf67d58ec9f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7b6f68d8010b3084ae4676fda702d02de5985c8dc459774a4891b8a76e6e308
MD5 8c83064d4d85c4e12cda0dcde7b07ff6
BLAKE2b-256 7295cdc9fac6c9dbe2a08b7df076247cd21a9cf2bca1b21a846a2768c5041c3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ecfe6e1c2501af04eeff2b0c87b927a855b830a02f0710903766fea0a4437dc
MD5 150b1ac34e36f980bb55e448e64a2cd2
BLAKE2b-256 0c9daeabac5cc14a8c17326fb8e5d9d38f49104b54766f78c14c2b8e46518fff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6376bf78540bd19e212cdfa71262f7ae783f0bd4a84307de17e40241931e9ce
MD5 03fffb0a28998540fd0c78730987ca8e
BLAKE2b-256 865273130e5e2b6a2ff5b6878dd18c6134e5a8a47adc616a18522114715770e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa400d640c3d4c5cd4d5af6afdbae822d9127d34ccc2cfba60738bea3a41f0df
MD5 7c9d710d822226b5b344b4b15a353ce4
BLAKE2b-256 01f860255d0e52a264181924e0c57180476569cccbb67102cc0580a3e34dbe61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a2a92b40cc8c01c9771c3437c30c4988325f7e7d289579123147bce3c6e59e1
MD5 a861f2c7301a0aea63ef26aa105982d0
BLAKE2b-256 4b82851b3ca72fc0b03c318929322b055cfefcc422a04f03d221c34c9b9cce30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5eb4a5a02bc9288083eb265b396f65979fc3cd8d261ab968b2400c851320363c
MD5 9d73392ca2baa422879a9cb158d520aa
BLAKE2b-256 d891e5bec34a4d8c863f7caab188c40e1b99d74aa77ac84f560b01f340ae50ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 203410b60dbee4f197ba8fdc8d4b43ce104f61a87f4ac9f59e870f39fc0c6734
MD5 e47a984e8d5dc8e4625da1b3fa2721b5
BLAKE2b-256 325813b74d2c260e44f638ea047df05c0bf18eb022187cede274537ab0d7721c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ae2ed9e4822648f6f0ebf7257a96001e2838f5822a74df80ab03d6f201c6ef9
MD5 26cab479d88fd06e9b9ed72ad1328e80
BLAKE2b-256 ef9acd0d119eadc08eef47135d76c7cf159323c0baea69e7416e674a39f2737a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 623c9ce75ac56058437c4b8d4279b2fe834249c7dfee586b2869d63c291d7ebd
MD5 d58af66c58f607fda35f5ee861198fa2
BLAKE2b-256 e7644f4a8258d2f3586ec501194a53eec83ceb980962c298c830767f2f50abd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01b87e51b42fff6c1d5cbb47a9d052363a0d49c84edaea57b202690cff916b0d
MD5 dc0002639aa394224ab9d0fb8924dd88
BLAKE2b-256 c48b791d980be53181620a148f2a2af2cda7dc61b1a7503d02c9cce8530ad317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00d441e998b56945562c8f1437a6460abe6c3e64fb7d6047ce5a19ec332e6cf3
MD5 0ed17809cbda4314cab8fd61fd4d0c93
BLAKE2b-256 6df49807554eb9e084307b2543594b23232b752a6768d84d59beaf0be0cc9f06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 916342f387373323e7c342c3bacb4bbdb9b4866522937a9cefbb4cadfc2c7d9d
MD5 e210564ede93b2d7692f3713c841081e
BLAKE2b-256 5b59ce3e5229846e11b94f31d34bafffe8c487b939e3f77cec4ba24aa8c062ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d48ca17262d4e3fee0a2f843e87c665d098a8502368d2d49ab43e108ed8d8ee8
MD5 73fcc12fabe4d09c618997e548f69940
BLAKE2b-256 661c3455ff04b3d70f5a12a055a23a903d9276e812358a564512f5675277d7c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1c285760e13443902a7e34e4bedf7bf7e4edb965004b2557b75a17d08b8a2ea0
MD5 2e4b9b51ca0f14ac86286e588af12d22
BLAKE2b-256 0f9cf0811d0dc9d47b7bc9b4a6d6191bb440f3d6d40f2de0c6a8857d4019bad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d164f1a315e351e13d5a78287bf49331ac626de4d41c6998034a878f3556c0c
MD5 739bb52f9e3046451ff3e96d70f4db2d
BLAKE2b-256 a8f8b71ffa0c7cdbf95082ec733766e36f4163915d8357ae6db158d672020052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d10291aceeaf87b582233eb166f19f408d960d83e1198495c1414599e41c5023
MD5 92523c591692af4b6dd1629ba89d1fd1
BLAKE2b-256 ad9b4025702825800d04e828f8d8f06fc4ff6925a53a8fd4e1338b0d92289d92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 546d27906c4ae3e385168aadcde46e587193a6eff70485989400ed119f74cfab
MD5 f1864369007cd091a4dbfd88819884c9
BLAKE2b-256 19ac030f00d874a79e5d656fa9745567dfafff1530a232ee062914990c824d91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40df48f18b1b24945077b10e59567ef073600a7bce87d10967f5a8ed9b21588c
MD5 52d4439e3abc4dd44d4c744e6b4cc96c
BLAKE2b-256 ffcf07633bbd9283469cb28e857932dc9f78e421397cd75a891047e9bb1e25cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe44745a3a1eadd5aceba44acc5da8856f19b5d22a08545f43d8743754f48f6b
MD5 0df0a440bb635a69dfb176f40e92d3be
BLAKE2b-256 da43b17da7074b0acd7e88e6f736163308f1f047965aa2b35d045b73b83e83d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06a55711862025c396ff4d9ba221e5af5c04d86a5bc37e08995fef6a122d7263
MD5 89842f8eb5fa7c6d543687869de27689
BLAKE2b-256 ecfa973886701a788e6b3be06909af50207e03cd609f015287856bfe62e7cb44

See more details on using hashes here.

Provenance

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