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.24.tar.gz (1.6 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.24-cp314-cp314t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.24-cp314-cp314t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.24-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.24-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.24-cp314-cp314-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.24-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.24-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.24-cp313-cp313t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.24-cp313-cp313t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.24-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.24-cp313-cp313-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.24-cp313-cp313-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.24-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.24-cp312-cp312-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.24-cp312-cp312-win32.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.24-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.24-cp312-cp312-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.24-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.24-cp312-cp312-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.24.tar.gz
  • Upload date:
  • Size: 1.6 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.24.tar.gz
Algorithm Hash digest
SHA256 8b820c0a3a131153a09d4f05b18e90290d58ee68e397002bd7fc92772f8fdcb8
MD5 336746c460388d6f97c3346caa263ae4
BLAKE2b-256 a3c3766651027b9c46fd5298beadba420f39e5a8caf7646fae0e890f33728c00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aba4cecf815c8a1f00c249e46df98c9bf4a1d4ed17e8f4ea9c6dda6e7a2b0337
MD5 9e563158d6679f1dd9649dbe6c4ef05f
BLAKE2b-256 dc34b98bceec900d7f3358fa301bb2c0196ff589c5ce9c41b04bceae437995cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a94691b18e7583579245963711a113f3dd476f2c75d91a7c782f6c8bb250feec
MD5 d0aa064173d07ef8e1e0ed0bd3fa11f5
BLAKE2b-256 c9e4d9671d9435342fe74e113578b2940fbfb9475d4c979fd2f89ffabe3ef9ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba13241baa9329b2c4921211e163db5d87f311ae965985a32ecddbcc56f9b3f6
MD5 da9e4c7ae1b408eb06fc0af791ddbc5a
BLAKE2b-256 d546020f27d123684e9a4792534b660bccb72531f693a9a408fa84900d183785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca1b9821f6b440cbe4bd01ac550284db736a19bcdba3638ff650c8ce22fca1a2
MD5 e3623c9179edddf48c964aa0efd06d95
BLAKE2b-256 c509cb847ba00323ef1679c7faf447e0f01efa855ccffd3618964f7143406f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1d3c920b2de07ff4774f039df193f0125473d0c8c360f5cde220cce75242ade
MD5 0c9a8f04ac33118fcf4b32f25b35f617
BLAKE2b-256 39aa51bc529a99f18771a3eb4862094187b0d3ba298097e1f086a77a0b0ea8fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92055a3890e5bdcec124499f0037d821a64e2f158f48887c65ea0f98b4eff995
MD5 dcb3879f6f335a1ff1c0b75ead673392
BLAKE2b-256 ce32eff5d31781e2f9a017bf5d044d056fb16bcf69f68c82cc78ee4362acac7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dab35c3bdda4f2fdfd5e859be394f5dad3526653cbfd1841690257c9c8fb341
MD5 add1f6ac0d73a37e23a760dd12fca1b8
BLAKE2b-256 44dab9abcf1e4640cdef3f980ee4700c404d397dfbfb57c9ac70ac72dfc89f0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07e367e50e1200261396f04e3ee5f57058e40660178568ea09e3ca87eba28be6
MD5 8dfcc86dc3f045051a0ac13ad97bf23d
BLAKE2b-256 43a08dd61a92bffa318d8bd86100ef62a0a1555e49a5c653fbac5bcde83a1c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6da41f7771dce690676ca8f015f64828f67d3200de6ad73e570b427ec5e1a318
MD5 b9d9b1b6dba82a52284675563f338454
BLAKE2b-256 2e99d61dfc1d4b972d3224c16434adee947977b298ec4e95650e1baebc959298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b3ec15cfe80d7dda705c54c3f55315d8e8050067f802d3bb6743788a708ec6c
MD5 71b26db21a6c4125908a7f2398d6e4fc
BLAKE2b-256 c6088ef6463d46524cbf0a983e30cd097ff96bee25d2a053bf60680a80f7d4f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5dc26d2d94c2a2a1e999ff41962302d713c059e33e4de7dde3b700cea20ecc1
MD5 09cebdcd0688aea44be8bd5fcb52c95e
BLAKE2b-256 d7a84c38505e068ac1cda501c01c0f94ac8bfd766ba2dd4acd55ac792951afea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1482fc4957ce92547deec5157dbc868d73d670621dadbc4b50104965ecebd457
MD5 d07e310d56198aeb7c3df01a9042639a
BLAKE2b-256 9223de4afb7ff31729a639c092fd8346fa437443412ae94efa9c82383bef9344

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 575b27b83ab76f4be6d46ce1693c1bb0106a68163ab1cabf79ba539cd578a188
MD5 685a006309e60f7422d007500fd5a0e0
BLAKE2b-256 530760b2c534207d72d46569b7e5bae37eb79358c59dd0646047a694ce6d0b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a849f22e85de5d37e9b5e156570b4843f8a63491a7c5911cd27627ab955ee4d
MD5 9b0622cc8c692976b84ff6ec14676468
BLAKE2b-256 18a4dbd34538318d91bed1a62857d6f4fa03c8cb530fda22b402395c9316f913

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.24-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.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.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6dbb6b9e8b0ec92d23731964adf443ddb8f9d150823f1363c3f5c65e53658aaf
MD5 1101573b7f85b2d23f3541d233a07377
BLAKE2b-256 395aec93e88a3f71497b19e6d5cffadf1c1ecd79b3fdc2609babe235a8ccc8aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.24-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.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.24-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0526be31db1b765f0378460d157dc4f6f7160004d83bee736926387d59241157
MD5 c6e2a9bceeaca80c2775a99bc447b9ff
BLAKE2b-256 0d8860ad6f369079e0596e94cde87b1b9f03f786fe21fe63d2be107f6997fbc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 129feadd5b6586e486644f0a2efb5e8f80cb16a13e35669c4eadc0f484c79152
MD5 aec567856fedaddf78915f5f4d5e519c
BLAKE2b-256 609e227c901270b01178074657c4fc47ade217c50eeeebf7e0e051e9b3037623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d80cfe21f8db37640abf14d27295116bd503c1621c52726ce487751774ffc1e
MD5 e111e9f8c626593a0b4d2dc89eaffe5e
BLAKE2b-256 751761495bbdf245f7f050eeb1cbfa15f4c18526b4c66d3e25494dd61670690a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d8bbba08854ba57dd2ed57422ab8db970b4a5526fe3d0fe908a5b7453c94846
MD5 0da9c4aed82bccd95453e641e5896f90
BLAKE2b-256 1ab6b8538696d033d3307c7e3f18fa2081b23a2edc27c8a7fd3a2374587f1149

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc0ae826132870b85a85f338c4dbf70b354e3e3ec8b148b3f71adf6b75e13cfd
MD5 1e4531173640c45f27adc5b591a10fb6
BLAKE2b-256 c6f947316bcc98bf96b55bd63893ebfad716459981996fead55c80e0a1c48619

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda799ba17ede9d403f3de67827837250baa2e2a566c2bb641a25c44702c4604
MD5 a61be8e2185a8197e6235b09f28a27aa
BLAKE2b-256 df728560ac557e279d246801ec3977943ccd2551338ae9c80a075b0ee2799aeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.24-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d24b9893c5f14e60a47f619752083fb01459071ccde5bcfe222da1b949fc9b4
MD5 0b9a72a69f6b0ccf38cd337e39063da0
BLAKE2b-256 c78c4e8224169bd799b501ca23ab31dce868ea549668273c66492da6cf3e5238

See more details on using hashes here.

Provenance

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