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.11.tar.gz (1.0 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.11-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.11-cp314-cp314t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.11-cp314-cp314-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.11-cp314-cp314-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.11-cp313-cp313t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.11-cp313-cp313t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.11-cp313-cp313-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.11-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

grafeo-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.11-cp312-cp312-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.11-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.11-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.11.tar.gz
  • Upload date:
  • Size: 1.0 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.11.tar.gz
Algorithm Hash digest
SHA256 20c88a684168fb0d51dc8c211818311096d96c87af28975bcd7776bf263df747
MD5 49aa39481e5a28d8f4ff21d61097bdc7
BLAKE2b-256 9f57e83756b7857a54ff1d5b8e094f79bcd1b53ad1339570bca2fd57c01be163

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1616ae08cf16772f8320ecbe7609c1244cf4c331054dddaf36f3ae1640d0d94
MD5 2b90026e9f2e410af3096b08b5c09561
BLAKE2b-256 6140bd09327c513f4fe3134e40ff861105dd9d8a7466f20dcfaf8ea1e079bde6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04b0f44729127ec39f89e64aecc4e352aa87eba1cdbeb954727eff3a082f3ce1
MD5 35caac0a50cad18a8a67bd01262b97a2
BLAKE2b-256 98fa80968885d9efbc1353d017efca0986047cff73624c7487b9d3b2dcafc8ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a719adb8543442f15f40e0792fdcda76510f866356f9f936f28a01dcdbad7c4d
MD5 3e26af197246cd5dd0cde3d67631ef03
BLAKE2b-256 45d445bad7df9f299652c140d5cbad4ded1e84c9c3f11915d05d8b6c94c99765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abcf9fb1ae8336a284c29fd817a6ecf80a755bc7ced18deb39101ab70381c365
MD5 cef9af97080422978e45d4dfb38e1fe6
BLAKE2b-256 e222e631e070be4437017271ae3e8c88a8506fa38626cff198dd241754d209e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c440cf12609879f778202a34efafede1381a1455b26d4d6c8ca04adc6510a2b
MD5 e24d4b14f4992a232701d8ef5ff337ac
BLAKE2b-256 30b1242b9b2a12f8ad98624e9bb771a69b4752b9676eacce2c8c73220026a7cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46a160ca91823890871c73364f5891404f530b14a6501d5d38db24d1b1fa7c4b
MD5 5eb174653b5e682a0ac27be3c3db531f
BLAKE2b-256 dbcbd26c1671c0780c22c4c2952479d50deb21bd6a3df58a1062714e00cdf27c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3f30fadd6d5dea2f59d70637a30ea4fb158ebf3b6fc3fb38c8ee4eb08231767
MD5 9feefaa050b1cfa669c5eacb01d747c1
BLAKE2b-256 90c094b50fe28f7f796e4b91d13fb342113acdc1a51944da59519d7cf6e0d18b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 191b385f01f3ebd69ef985f4d48d1473f69872529421c29e24dc07348eb579cd
MD5 a753461ba49ac4c699564123f045bb81
BLAKE2b-256 4a07507e428a430905373d79bc22d5e1a1abc34ddead05f4aedeac51cabc3948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2a96479dd5e98338284ce08556663a8c0870ec938c00edf12204dd16cda943c
MD5 ac62f9d01f50248997a75e2a8e6da4b2
BLAKE2b-256 a755b58a3578d814b496f29eded0ef6889e380e84e25192d346e8f524ecbbd8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a31d7c507dd858c68adc2a1ee67c94d05f491126de15b1db50d6c439be93ce4
MD5 6149cc7be50ba660a4201b61dfaa4486
BLAKE2b-256 a541e7e1db37c65ed134d3686a36049694370d5bff3eb610665c0e5898383d5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1407ef254b45b8c8b5533ca6e12d70b8831403791c7e90ecfeaeb6b06c69071
MD5 4823b7fe38752cd635cff0eacf3b11ed
BLAKE2b-256 da88862f97df042889402d2a9904b7b6fc7616220727ce9c3e626c3fd550573a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9f25a118a4fbab82e78e8a1673a944353d5118b0c1f847138981612c234cae5
MD5 7622b74dc997947d5f73053d092f51cc
BLAKE2b-256 2c4943a8ac603f0b3417112f6f4dcab91b010786e8980704959b0575deebd445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 145c61b878f721f3e791abbbfaf1b4ac067a99ad38fa36bea3ac184dae2bc821
MD5 dbe41ac1619e640d640dbd05bca8ed9e
BLAKE2b-256 69abcb893201d8fb3470156a67638fca83c4c8f7625ca9b25307bc1499264496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efadd2d5d5996b0e86e9b35e63c20b9c4fb3b07fb958695eaf14b2bfeb05b188
MD5 bce9b48137829d8b23e0654bc04166d5
BLAKE2b-256 5c3fd98ff1431e087210e5f929132178a8ac79c17eaa1227744cda2197679d08

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for grafeo-0.5.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8035dca396af6f35752ac106c6bdb9036dd1e7c732030d7ea7c6622a4a1711e
MD5 2ca65a88e73b89b7e85b7647a07294f8
BLAKE2b-256 0547d7dce5bccb9fce449d2f173c4379515bb57a3bda2ee2523b37fe5b4c16dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.11-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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 51a34aa646880c2e3309e4b1b5630443f8ebf787b2fb74ac6b2d60674b420cf8
MD5 5dc36b84401ed2298d37dc1ebebd4a3b
BLAKE2b-256 8caeb3897fdfc284a1f223910ea53a59a1f1f4c0478e4ebee237d6b937dcbf18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b722a5339dc8bd04e285660661996d5391164f516189e3f17a3ebe51888c35c6
MD5 0cdd29648f0029efbf1df44016244fa3
BLAKE2b-256 816751432808e18e97199e91d6314ab2668d165933ea600341f6c264f67ff8af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f6366d0081600fc0f317dcebf4a0b09cb0ac1f3c165fa231eab5ea06c2ccfa0
MD5 e9e56886ceb62c5fb6b42d2f669d6597
BLAKE2b-256 06d0522568cd6fa96cdf1085f1193bff4461fc1558007a728a242b39a2255af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c766b6de02f1bab8633e87373031e4b2f0ab44b141986cf4480dcc256c560fe
MD5 a741d425a492c400081c88522f4b1fda
BLAKE2b-256 d7c35602bd0d8e4e78865417e5462633c3962f3b808c3bfe681eb31a34bd7a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39ca39f72e1757dec7d6f436735eda0aab033ee5e6f389fabe2347fefc2386d7
MD5 7882ab2cdbe7daaa3c9313d690debecc
BLAKE2b-256 fb45e3ac983814cfaa33e7e5a7f524f5fa2c6663a71a1d14ed17de9f89356dcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38a7083cc56005f32c88dbda5931cdf26a1e7892cd2bf3b38899b98f53600d8d
MD5 4efa58edc5209fcbef05479ff65c42ca
BLAKE2b-256 9e516ff9b6972e660254f578b21484a5daf73e6562f7a94ebd163593b75f7024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a846aa3f57854537bd61695bc95e41c8caa52df44d19e2ca76650dd08e2b5f73
MD5 62028de82cea6144e331b832153dd168
BLAKE2b-256 ce6113ec700989b1da6542a254abb2e72414df8e65d3ac16b56bbb5d4905a7a6

See more details on using hashes here.

Provenance

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