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.6.tar.gz (958.8 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.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.6-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.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.6-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.6-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.6-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.6-cp313-cp313t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.6-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.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.6-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.6-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.6-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

grafeo-0.5.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.6-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.6.tar.gz.

File metadata

  • Download URL: grafeo-0.5.6.tar.gz
  • Upload date:
  • Size: 958.8 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.6.tar.gz
Algorithm Hash digest
SHA256 0d3c3b26d9ecfe0b30dd9bc8d66c96f4c2a1e7953672ca8b5bd6141fac5f06fa
MD5 08e838405e7a27d8f7856d308bd2918e
BLAKE2b-256 bbeb5638175804fa9821332917bd08aec1524fc09b3830eb7707eb9e1032c92c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8222a247b5a4835b82bc526f49e06138f5ca7ee4a7960b900ccbe6709cf7bbb3
MD5 ea182c895e1a81edc6dcde46a3a0a03e
BLAKE2b-256 11f3601a99b426e31a45065a7deda3ca0d29290e0de7dd15294d8da7839a762f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecb45d639dfe65a43390a24f2e67d92e321602c11096d2ef8b37f1eb3d60bcaa
MD5 1643aeb71361db6e102fa73aa75d6427
BLAKE2b-256 3cc08725ce2e20c3cf0fed79ed156a674b4cfd92f8fe4a8438a8c282154eecc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4d85f2ccdb96c0c920235f12479c1c5dfe763e5e82949b97c04220d547feff2
MD5 6722eda0b27ed35d500e0a7a6a78e244
BLAKE2b-256 5b0a82cc8d26d65f88596d1e2f6dff801239a1e1ea56910efb58dd0c46b1c89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ee1ff02c34cad1972a7f2a9928da003723f25731e3b09c88a7ab23d1d069afb
MD5 19761e6f04f21e2369596840149893df
BLAKE2b-256 f4e403981e4723516595c332a6304bb3e7feac21dbebe84cc215daa7035c0d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4f86a09eabacd9b15e96216fb36beb7cc33383da1482dabd02f0bd42a99c38c
MD5 0105179371d7ac9ec72dd3c2c465302c
BLAKE2b-256 c7478df29fa80098ca0ba2ab61c0d13c85b01d250ec8b9b03bf7b0fe1dc39480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5487548b702dbd90c7eb3ceb82b898934230249b2892d5cfbe769f03c3517865
MD5 01dd74a521308d4eec621ba103b61da0
BLAKE2b-256 bcaa5ff8f90edc136bcb647369201ec489091a988fa359bcdc359f3d905f3cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f243097961dccc4ccbf91e498f6a5ee92efa8937f328960f89999cb9b92f0d6d
MD5 e6845b1915043b46e0b7a26658f182e1
BLAKE2b-256 2f995edc306cbbb2d38b3dda505bb0bb67c47ad3840f36bb634bcd1729f5048b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1be04857e4d60fc83611645f81647a69a33903b51021024d6b4d8b1ae9754625
MD5 3c51d7e80de2a1da7c05a75b8413ade4
BLAKE2b-256 73ccf0d543e156f51c91811d90cf27ade3353542d3d4a24322c147a97ff2d575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aadd3c3da130a112e6ff69c17d4bcdbd20d6a7b1a75d22110f9056213c1e8f8
MD5 872d54aec9e588599f28ed5a9c21d919
BLAKE2b-256 0cda2f402fd32f158bd1fd59fc9324e336413a950909820a70dfd886bdc1b707

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 987bf9c09d5410692a2abd54af41046860ed156aa2d700ad827521921870c67e
MD5 ebb2a7b6ddfbe7f0807cef30cc7d4226
BLAKE2b-256 8b13bdd6779c57ac2d4631d5b9edbe86bf4018d5affe055d00b347b522d9b257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ab0e50627f369b4a5fdc9c5437092fbd199330a2618c56009921a5261a263e9
MD5 6dd4262fe84afc76e7254a687bb0e064
BLAKE2b-256 6c1c0a26953f28d2daaa6cacc2b14a8b7989969c8f4b1c867d99a45d5147b6b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c27671b4881f568552933f6e2b2cf349d23cd9f294974e1cf96586e1e63c28d9
MD5 6922b73f604d4d2585938e7d732e411a
BLAKE2b-256 28ec65692c7e64690d0a6df0beaf1acc72c5641c6f32e3bec094de3251d7fdd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70a12de74e800d57b0f35848c3ce123346550c637c89f4e2502019e638ce5b06
MD5 2e0e924bbb71caabbd836a58d94ed845
BLAKE2b-256 6358bb14ab0eb5f5a3aae492539e878096e9e5e9ee47f13e7c979b7aaf253a35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee78dc3bb372d2a5d34c6d17829ff1a57c2b25afc003c128127d71e307f61c77
MD5 b11c67a0927b5a50f2b5c16d9ac2f90d
BLAKE2b-256 9e53c746644e895449c6faafa62825ec31629d82c169dcdcc5a65ee03216ad93

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f19791f64ae609f5c4728a42fb5a2d7fe4e80c2961ec4d0feb3b1fcbc9ad0cd8
MD5 ab9d4d62c418a0c91a7ed2db723dc45a
BLAKE2b-256 c6f538a07a110c60cf1d3715d49806a0a0f16918d090c97170135814e0d207ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 114a9f9f580f3f64117440a26a57864cba5cd983f609f3b1c7e125ffb53563a5
MD5 afd447a3615ad8316f6c91a26dfafd97
BLAKE2b-256 883e1743fae68b5864c43cfc254f806346e66952bbf03b4baae58d0204ae1f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13b89780fb0f68e6d9d7f7fedb829835c91a101fa01920b02763261a1a1a218e
MD5 5a483d2ae6765aeac10c6fb754cf2c4b
BLAKE2b-256 3a9988ac4b66c565683ba83592d7b13511a940d778e3eb0071b3b7546f7128b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a33a039e4d1f046a942d3ddb3179052e541d82da19d6e64d0de92fc2c711bf4f
MD5 b7dc17145dfeecec15a5dc9c5613b9aa
BLAKE2b-256 7f06606223d07c59911140ac0c4602fd53b18d6ceb18cf51e9102626cffc63d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b14d0cf2500f0f18d919dd3b716878efa9c0a5b98145129ca2cc7e912fdc03d
MD5 04d0df30cadd01933e2418caa77c2bf0
BLAKE2b-256 d7104cb372aaf7acbe668e9f0e67a2c3e9da8a127caed172e4a1ae83d00ec7be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8606d0ee515e456c6df7b6cc69a865c286cd791555b6d84a37dcd236cfbef91a
MD5 9c45b0fa4163194172706f69b7b16d6c
BLAKE2b-256 a195c39d6fc6203392e1740a0b1f71acf8466c77730c927b01a01c2fe4bf78a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81ea46ee09da991964a2943db8f198fb3e4503950e6bf53f0a3cde76d065e24b
MD5 a2dd10ea5ca62dee9e9e500630496083
BLAKE2b-256 0124091b578f742d7b746527f5c63b2beb1f0d72e4a813dd188e7ead95203eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ef477ab03b1f5db8207b6213f175ba3525a355e27f42b835c16dad48da168be
MD5 994d04cb23194f99d7cf94c73f883485
BLAKE2b-256 c636b97a6dea846aa94b22ff2308b09290fe2937336977f2924a84a148232eb2

See more details on using hashes here.

Provenance

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