Skip to main content

A high-performance, embeddable graph database with Python bindings

Project description

grafeo

Python bindings for Grafeo, a high-performance, embeddable graph database with a Rust core.

Installation

uv add grafeo
# or: pip install grafeo

Quick Start

from grafeo import GrafeoDB

# In-memory database
db = GrafeoDB()

# Or persistent
# db = GrafeoDB("./my-graph")

# Create nodes
db.execute("INSERT (:Person {name: 'Alix', age: 30})")
db.execute("INSERT (:Person {name: 'Gus', age: 25})")
db.execute("INSERT (:Person {name: 'Alix'})-[:KNOWS]->(:Person {name: 'Gus'})")

# Query the graph
result = db.execute("MATCH (p:Person) WHERE p.age > 20 RETURN p.name, p.age")
for row in result:
    print(row)

API Overview

Database

db = GrafeoDB()              # in-memory
db = GrafeoDB("./path")      # persistent
db = GrafeoDB.open("./path") # open existing

db.node_count   # number of nodes
db.edge_count   # number of edges

Query Languages

result = db.execute(gql)                        # GQL (ISO standard)
result = db.execute(gql, {"name": "Alix"})     # GQL with parameters
result = db.execute_cypher(query)               # Cypher
result = db.execute_sparql(query)               # SPARQL
result = db.execute_gremlin(query)              # Gremlin
result = db.execute_graphql(query)              # GraphQL

Node & Edge CRUD

node = db.create_node(["Person"], {"name": "Alix", "age": 30})
edge = db.create_edge(source_id, target_id, "KNOWS", {"since": 2024})

n = db.get_node(node_id)   # Node or None
e = db.get_edge(edge_id)   # Edge or None

db.set_node_property(node_id, "key", "value")
db.set_edge_property(edge_id, "key", "value")

db.delete_node(node_id)
db.delete_edge(edge_id)

Transactions

# Context manager (auto-rollback on exception)
with db.begin_transaction() as tx:
    tx.execute("INSERT (:Person {name: 'Harm'})")
    tx.commit()

# With isolation levels
from grafeo import IsolationLevel
with db.begin_transaction(IsolationLevel.SERIALIZABLE) as tx:
    tx.execute("MATCH (n:Person) SET n.verified = true")
    tx.commit()

QueryResult

result = db.execute("MATCH (n:Person) RETURN n.name, n.age")

result.columns          # column names
len(result)             # row count
result.execution_time   # execution time (seconds)

for row in result:      # iterate rows
    print(row)

result[0]               # access by index
result.scalar()         # first column of first row

Vector Search

# Create an HNSW index
db.create_vector_index("Document", "embedding", dimensions=384)

# Insert vectors
node = db.create_node(["Document"], {"embedding": [0.1, 0.2, ...]})

# Search
results = db.vector_search("Document", "embedding", query_vector, k=10)

Features

  • GQL, Cypher, SPARQL, Gremlin and GraphQL query languages
  • Full node/edge CRUD with native Python types
  • ACID transactions with configurable isolation levels
  • HNSW vector similarity search
  • Property indexes for fast lookups
  • Async support via asyncio
  • Type stubs included

Links

License

Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grafeo-0.5.28.tar.gz (1.7 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.28-cp314-cp314t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.28-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.28-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.28-cp314-cp314-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.28-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.28-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.28-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.28-cp313-cp313t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.28-cp313-cp313t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.28-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.28-cp313-cp313-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.28-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.28-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.28-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.28-cp312-cp312-win32.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.28-cp312-cp312-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.28-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.28-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.28-cp312-cp312-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.28-cp312-cp312-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.28.tar.gz
  • Upload date:
  • Size: 1.7 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.28.tar.gz
Algorithm Hash digest
SHA256 426529a39456a35e3aa3d146c02a0b55e83634596a594ae82c14a42ff48f8be4
MD5 d93c625f4b6ebf36670c186e43c0f177
BLAKE2b-256 9903dc511951843ccaa4fd7804f4380994cf622f39d74afd2d24c5abf7911871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6874fd22098a44c0c250667a821800784e43d337e2f48889c22b10c9b0bd08e2
MD5 2a418a6bf634689d663c3ed43edf715b
BLAKE2b-256 2a789cb11fb5d6e87cb7bb712902c1c5adc994350dee0e431623e4e3a0d293f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 939ba991a10813747aa3c3fa0601b3080b7d375ec2d252ba43344a965ff32cb0
MD5 f3b6936a0ce16238bf85f3f594eb5008
BLAKE2b-256 ee3f8b3a4e60476c91e797f83a98da543f8a4f7f2fcf8cfb028341c5469cf839

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c369954a4cf6e8a6d279fe546cd1f3e7680a2fc609d3467a2e67ff9db5ac1b9
MD5 a33982b31fb401efdc1b1115dfe6960d
BLAKE2b-256 88a80ff498cde542e188278147ac11ccc07c700c669aa7e7609ab1331cd826e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bef72478694e474d3743ec3a2a7053478dc267499f79cd4ce5f39394a1488b50
MD5 d6965f0455306fbb11d7b9623e124784
BLAKE2b-256 591fdddb809dc0cba19b382b1c442d66179ff73d9067c2f444e31cb3c5c67e84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7511d53190fe87a5855e02bf3c169d0d56b9fe8051ac26add35d83ad1038729
MD5 317d197dbef89350d682fc7a49341f1e
BLAKE2b-256 ac5f14d4159ce98491004cb7b0b8f4fc0900335b1bfe888bc233fa2ff27d2529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78579e9640f220c72ae14d58133c6053091e70623923df90cf4b9412e2af2ee6
MD5 9f48198355da2952650920f0ebeaa41c
BLAKE2b-256 8384302f15d2338e19f57c86a3ee8b16af9b654208b59a58a79824e93847f638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c28d222b9d9c58a8b1c0fb6126f30a9a9522f165a64465a985320828ee9aee73
MD5 14fdb8d2ce74e680a2a5115cbebf7faf
BLAKE2b-256 5bbb60bc1f3ab42975b8b52c33ad8090bb9a7b94ef05710ce869c2feae5c4b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d467f2ca82f812f0ada741c4728ae616ea5df70ed5edfda2f26f6818ade761b1
MD5 5fc4751d57eb78f88b0f6c84da5bd720
BLAKE2b-256 676dd4647220f3709684d37f0c6ac17cd32171010b8f809fa7694823bad09d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ee833c0296f07ac78b6cd27d1e75d354e45aa8652f56b7739c0ccc4cbd52f39
MD5 3b955f0c6fbc0a3944d6dfd6131a7cd4
BLAKE2b-256 6f250c505a5c0c5e1f814fc606b15110032472479dfcd45cbff5c5c6274d5510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 612e4e0829a098a445ba767b8b28bc7eddd8f41751674c5f5fbab053f05f37fc
MD5 bc6e8d302156a814d071f56b9d107d2c
BLAKE2b-256 7254e0fd3c7542c47e92e211458783e09c4334e932551ae9dbd20f855854aa78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f017ddaa85f7c38489bb738664c1a5cc20be232d3258191434d050c7b5b9ce6d
MD5 0eae57197b2059e9478d4b52addff5fc
BLAKE2b-256 48e966b38cd6d1ac06a2966fbdbe3f16396dd57514f0513be61b5a2ad58524b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7b94df0cbf8d645bbad93fd5a80068c3e233689fc366fe6d9841b851c7f6a77
MD5 9ded510cfac0da920afd4014f7a8d9af
BLAKE2b-256 ed0b52ecb27be37041f265d65e5da361425c98837a942ca362036c068bf5b416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 521fb0720cbb665a6f64b8132b58edd5a9591675ab34d33efcae534778604bf1
MD5 be2ed5382321e5c1ab5738fd4b5ab4a9
BLAKE2b-256 cc6a06a4bfd9c79a430c6a31a4a7e6d71e8ef763047f76f88b05fb789e8a38a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9269d31e6eb3413fe435dcd6b86cc81afff30539282600b9d26d88dcccedb99f
MD5 3c2a24986186ef7be77f30a94a9de7b8
BLAKE2b-256 3bdbbfabc8d8311edc04a6fc440a123f5b822140f8748666d0b29a6e81cde2f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.28-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.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.28-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86a6a8124769783c1e3c8085e17501674919a2c38310fc4b53baa286c5b21196
MD5 bc3e4c16ee5291b475c43818ffbdda72
BLAKE2b-256 55814a8d084dade8126991d289e91458e931a4ef0c771e3a2faa8b05d3cc6dcb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.28-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.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.28-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1532d8b431bb7f234b0526e73dc8450e5970d910c9317a51289046b161d6277d
MD5 258632e6430570f1ee8b55e767890350
BLAKE2b-256 3556b084d2b90892f63970be9a955f21525f8c79a8b0cb92dbb6152238311b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbe8fb28dda4109e87b232b8717ae998ebb2ad40d54e08e669ca474be0504132
MD5 893cd417bd575b519e906a388342ae38
BLAKE2b-256 cd1669a42475053024647a5e4061db611ee00f46074a54b36f73b9eac701c308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0aa249ea39635a529be45978073ebf82408dd85459da1ef48851d84d207bdd2
MD5 cf493c627707e02726fe4c6a3c661cef
BLAKE2b-256 0114ae555e14ff29275b93ea1636e904ec2e0671dcfe086a106d57acf7dd9c83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8cef42128455d85292189764eb6121e18488cd38abc16158f8d6506ef94f46e
MD5 da3007e02c5aab725cd752907a93d25d
BLAKE2b-256 eee45b631688ffda93fc46e4c13816436a977d85b4fbeeb48672e6d35b5d86e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 220beebd647125112635bf618c593edfc0a284cedb65aabfb066b477c8df237b
MD5 069230306e5b0b7a608d4e7976b835de
BLAKE2b-256 dc5c0555f4bd173b28b3e32c4c25e04ca556430f3f404b9b2cc4b4a5af87b5ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef77cf243a23f1040a8ac32eb4829dba8de550c54099aba6f073108d78806a62
MD5 e9853668ffa6c59c744003a942cceed8
BLAKE2b-256 3a4a04f067825c557642fec0d6225fc42a7f43571ca68828765a9d4a77c85563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.28-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d45b306dc8fd583342fbe1e6edd759948e83784f4fe05d8b963fecb775f303a
MD5 22429f2b1bb0a38bad79cd5e196749b8
BLAKE2b-256 220b8c8c9f133892231e0acee2be1c886776011f73d6ebbcee014b75ad4fdccc

See more details on using hashes here.

Provenance

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