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

pip install grafeo
# or
uv add 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.3.tar.gz (921.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.3-cp314-cp314t-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.3-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.3-cp313-cp313t-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.3-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.3-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.3-cp312-cp312-win32.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.3.tar.gz
  • Upload date:
  • Size: 921.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.3.tar.gz
Algorithm Hash digest
SHA256 2f5a9538373e436b394f489f0427941b6a2c8c2b4bb7816b9acc40e1ba64907d
MD5 3cf9013eb78d5e9c29456fcc13535c9a
BLAKE2b-256 96f5a3c9b92c52efa0ca99178189b19f0dc988de63930e6bfae496cbf9eedd82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 231c8ddab0b267c92ac54312b80c299d1968a9f2501a48e80b75319cedc6f386
MD5 4fd14f476365e769f2944d91ff64273f
BLAKE2b-256 2aba15fa7da9040091789f37d6b245586baf971c12a7bec5d2995f1f55bec52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b993a64e306349af2e6ab1693a9df79bd41af8e88b3ae8412f594a8aa13b658e
MD5 b16295d2cbea6303fe7b8425a1e6ce3f
BLAKE2b-256 cdaa3a68c086e3e094f7005897c4d40029f2e59b5fbf02d8691ae8ba195d9571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a2f89b63d9440a227c0b635240541111c022263cfc7579c77814ceb6a63e7f5
MD5 deb4b06111fd4b892f0d7b671308cb92
BLAKE2b-256 284750596b2dd98acf0e0b2bf6c23628aeff22060e96156d9ee1e1efc83bf28b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 364ec611ff7354439644c729c544d63242bed1a3df637bcdbe67bd25bcc4af23
MD5 789d8a9c4505224722d7b0b1b10ad1a1
BLAKE2b-256 163e5706cdd92886f10bc5f041bef686a153516deaf0939ef1baa91e993cd59d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4ce6ff007f204a32a6d2c9f36ceeda104729cf966bfbd0e86228cf6f8e6a755
MD5 10f1bb57a24a3466169d9d4934f76c9b
BLAKE2b-256 532ad3184168384b5e18bfe612b87f45beb8d87cda065b60b721fca772de7fcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 780842db498ffec86f4fb3457e9e4245d506dd633e9dfdb4de60784255b2c144
MD5 af21a90b73813fa44442207001d83694
BLAKE2b-256 7e6d95fedc76b87012eacc5045a7052187b639b2b87386203e316698d738729a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e0c63ba3b38478495a55b2a6c8eaada2bfff7b6c2cf0b92d2d7d7f3ae8d8c0a
MD5 9a002ce8af036c469879fd7ca66faed8
BLAKE2b-256 de8fc3b4b2e99eaecffefb5ace5419eccbf8dd2f4d8d343b23c5026e7d844903

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27ea316a183e716083d4fbe3f175dbe256bb0cfc87dfea48d7e9a8c380063f26
MD5 58d1572c8bbc4f8915b127565b2a6573
BLAKE2b-256 f879c3dc257259082d4a8906ffa1d85d650ee75a56f6d0ada3d4f720fc191e32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 daa523bb4681caadf1691289ad9ebc894e1138ed1c920acf4abfcf9a11e63d64
MD5 f428e34760eb1fea2bf8d05f71c38dda
BLAKE2b-256 8a36863477233cf846ae9fbc74448fe01dcdf2e49ec94bdabf00cb09429128a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0de6dfe3bde3b0b99e8bd875b9012cce9eb6df474043665b162087fadfef8103
MD5 8e90c7fe66471ccced08c98107ff3b70
BLAKE2b-256 fcb966c2e426417b28738489b17d080daea4bb7e0389b00ee0db32bf203fcc11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec8dbcf5e068679996b71a49a097b2875b795c9ca90210201fe6d15938d2d68e
MD5 c85d570ca9955cdeab828b25fa45093c
BLAKE2b-256 5d0fb0c9c63bfc15d420fc3199c7483340240442bc0381996df79df504500371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ede09748a7689352a5743e62250a9417fc4f84397c720bc8633cf57791ff981
MD5 dfb7c97601bbb650c1f5c718e4a676a1
BLAKE2b-256 7934514baa72afee8d81131e94dd77301b59ad0ae3c11fc24ed2927413ed5ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62a0099c76539b6408af9ced9964f36e7f2206b4abb91d464e9c09dd81203b13
MD5 3bbdf1da505f312f3025e155fd7559cc
BLAKE2b-256 6752b0288c8de313fe4cde447711bd14a44e81667c3a3bcebbe5e2557521ecff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2abad49e70bd1dd9a48a775731e7025f82b15a44ec1580a4602014e11a97029
MD5 5465a5f7d9ac968e533243478a13e3a2
BLAKE2b-256 d71870bcbb28e442d76803704f27c811c4c32e3209f8ea0af9328101c37e6b53

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ece2831f968a2433ec9367b2a8bae6cd042c9751ea4cda27480c9dcc3e80e72
MD5 afec92106e930b1fc018a5a10fa0f1cd
BLAKE2b-256 3ad0d18a161d45e01af8b70de443b008ee37e9c45e5388ffb9dcce47ec70b24f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for grafeo-0.5.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 73b4cd6797df13be7e844605118b0781e152cbdd3d5288fcecfd0fdff2cb07f6
MD5 06191a7ef060ee6883b55149748006eb
BLAKE2b-256 c69215e2e6edb044c93542f08f3b0a6dae52381d78f770c13151d8fa7645eccf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fa81e8b6773c928f18884a6636f7f10e43d439a2e57eb8e5648f3578b2a6028
MD5 855ab8d3d83759f38297d403088b324e
BLAKE2b-256 b8f6e405e83b8d51a1a84d2b1e4a0d5d5a2522c8fe75315414e90dc0165cfd28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cd850eca328ce31a2e11ef989aebf4f4bb2152c5aec1fbc089fe81ecd0f77e8
MD5 fed261f6a66a99002f8657a5e8d80a73
BLAKE2b-256 359e26ea3c9825f055c961fae499b8dfe8836d4106a8066780804e80f98d5e71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f97f62ead8c109584fd9e21f8a64c493bae4bb695871cf5b85ecc3aa0d9fa1ea
MD5 f9ef384c422e516f23156e2b09600172
BLAKE2b-256 c8057984a81ca16c46cbc1bfd082a832fe3634d1e05ce89e47ad2952b16da319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51d71aba762655c0c62e7d15c6bdc4e8ed85d65bf3ea80303c5ee809f74415b7
MD5 eb28b0d1333cff3b5f80dab2708907b7
BLAKE2b-256 01c1b732051bbbe835ee323a5178522192631d8d048f773f76dbdf18f6bf2af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f415ce6c47ae816ab50ea2f0a51acba24f3d28197e6131e583aa73a65ac4583a
MD5 ff36f4270892339aca45f5d446d5367d
BLAKE2b-256 20c9881e11d3738cddaeb5cac4a0b69f61dab6011fce0249cdb94df3b0d31449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c42c24308764a9984e72382b948c2d7223f2a62428fcb174c5af550ae4694b34
MD5 13eae9fad7fa6bc5ccb02248521ed45d
BLAKE2b-256 32a9fb44724cebb7c594926161c787cf67a75de18339c4979ac83dfbb4a5e551

See more details on using hashes here.

Provenance

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