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.14.tar.gz (1.3 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.14-cp314-cp314t-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.14-cp314-cp314t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.14-cp314-cp314-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.14-cp314-cp314-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.14-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.14-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.14-cp313-cp313t-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.14-cp313-cp313t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.14-cp313-cp313-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.14-cp313-cp313-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.14-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.14-cp312-cp312-win32.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.14-cp312-cp312-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.14-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.14-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.14-cp312-cp312-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.14.tar.gz
  • Upload date:
  • Size: 1.3 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.14.tar.gz
Algorithm Hash digest
SHA256 ffddc09c3e7e7456eb3f5d858f5ff32f751647414def46f68908cb46c033b7cb
MD5 150bd72e8739644557310e1fc7355af0
BLAKE2b-256 ddca3f4b420226e3b7e1fb852bba5ef1f43d12bfcf59f654b9b8adb2878b4f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a15f4bd62b09529d6b69b4df39f1dc4c128739ba65940d906cca8f3fff88091f
MD5 fda5880f8540a04ce6e01208e29cc78e
BLAKE2b-256 e9785f42238dcb4a046a32adc3e696033912fe539a2a3336d4984dac46c13211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bac4f3468a6e16b9d7eec41cc611e9d7db0a41ffe256a8351b4e1245a59f7654
MD5 519196536813c5dd00a6e25bcfe78fc5
BLAKE2b-256 642a9727f1f383dc2179fcb045929c6dc3487a076c916e0ca63c5611ffdec801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f53aef4c385f167405cfdcc5f1f3790a0c5d898506639ad01937b5cbebfe0014
MD5 d8813e50e8270424f8faf0a716d8c402
BLAKE2b-256 dec68e94eacda3f58911b3742c1fbc76b4ae1fd0a5f4f15aece5f914f1e7fa58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8f6a7321e740ce4ddd8ab4ebc406564796b4f1492883cc1184023e88725054e
MD5 330490c13d2e5ae5110378a935514377
BLAKE2b-256 d1aa75a86d89fe5eac5f2d8de6ca52fdf18473a130e3e23383251ce2eb5a5f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5af0611f9f14143326b5405d24394798aa7050deae288d0ca3c470e596e9e969
MD5 6892777422afa297b042adeb661f1046
BLAKE2b-256 f5c679f2d348768b275ca9203570e0c765f7e59cfe0755249f9e9b277037a94a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26dcbeccfffd7e04e8493f5a963e1d9e88a2db7ce3ba19a85c5412a9546e3cd1
MD5 148427b3107d01c39ba093b1dfbabbd5
BLAKE2b-256 8703f2a812f0b233f729406c77c63d706387ce22978d91c2df0a94d8487b1524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed4fd346ae8cb436ddb543cf6529f0246c4250957ec5c71e60f3274e967815e7
MD5 df095dbfe4206e996d2b9de024f328c5
BLAKE2b-256 9e15a5a43ac9b79f06597c66c2f6fa345995b91460e4da53da484dd534f48258

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 276aae6023504ddecb5d8048b081172597b967f85eb99f13b90bf57d593a315e
MD5 f62d4a62868d6af56853d7c3e743583e
BLAKE2b-256 2bdca5eb944de98ecd6de6817bd1cf11047c706730c78032ff7845bc6f3af4bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 697e6877653359d69775c5c98cc34d7300f9147c0dd36da78a1c011e4dd643ff
MD5 77671a2553306b35ddaa5ac4e2c62f61
BLAKE2b-256 027eaf49d7a7c5ee8230ddd5cea3975108849b02983397ccdfbcb257276011ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65626c3f0453a6bc5ee3a541a4830120d532e4ccbb15dfe746fa677c9327bbcc
MD5 5b1890ccf5376d3d9d5032b079baed2b
BLAKE2b-256 0baa81582b9c33c20a81db415fba8921a116abcb0e993f4b202e59878e2bc3f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 510037ffe7088ad35ce0756c2d8e0da2316d84ac8a641055ef348bc9adcc69c5
MD5 95744b478f0cf4d4c91b86cbb1b48f94
BLAKE2b-256 1e60d78842091d4dd027a47b34fe69cc45f3fba528e8518fa150ea3c27eba69f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a4475fa3e021127887179104726143bed2a2eca1ac5ac4b06c620e103e7c70d
MD5 e7dfa1fe59e38a1133ec6e4b38d0d1c8
BLAKE2b-256 cbc1cc9e6583c13476c34e53730f3691eccf03a6bd8853ff3f6acfc35148a718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 472f021df3da2f4eda4a33c19e940fe816c6dc051ef72f3ed270e187f33d4d5f
MD5 a624e926035f35b6064f01d94bede5a4
BLAKE2b-256 bb6521570ffc9c752e3cb8344195101a344ad8e214a653875309a968d2315356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa75cf0800cad86c612441e4f553a513b08ac76d4c3f9834f19bf86faef97035
MD5 0742ea25e8c658b13b2ed627f6f1ab4d
BLAKE2b-256 3e8c26361739c1535350515d9b718827d0e6b97331b1ba16b97a5da58daef1d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.3 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.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0afc132561f927f9f6715a8cb43b7e038e49a4966c57e54a7ef6eaee141725fc
MD5 711eef67e5cbfa36d7386b9f565dfc75
BLAKE2b-256 a5dd881e6e6e6d131449c2870e03d12a60fe3e2a0dbb9f8d5ab1ec390596b94c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.0 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.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6ad192a38511b5dfcd4ed2ac951ef11c17a1cce2ab2e4161a5bb83a736704fce
MD5 78b193b01869c9e6f42ca876f8320532
BLAKE2b-256 9693dca595bed588ac09ae19dabd5d43cbcb1c2aacb9206f363f88ead5fd82a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6e11197591a84ed22262d624f79f8b244e324ee530573854d3bc60e8cf9403f
MD5 92513964476ee058cccb669adc6a0f17
BLAKE2b-256 1ef7f48c5c4500bd9cb77d742af0946f2d28c5e76455a3a48b912dff59403b7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 facdc4c60a31c0c2df453090ff4be3dc761f573f96495e04e6f4f8b1bf0a0893
MD5 d61c77c4d96415891b5b6d05d4006a12
BLAKE2b-256 6dd62d9ce6150883c34011241896d7b85801219e929e7f7d9faa55cb15cfe100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a98e8ad79e1d39a742de91e0b886f444b853961b3f3f30846d0eee86e87d532f
MD5 738aeb00093a28a4060f6961c64ddcf2
BLAKE2b-256 3a70644247c8a4e35477212259f15791d723d3bbe1b94a6fba8c6b3eee447d10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c31b74663caed7740c8cbf03d79444906d10e732a8cd31ce082bc4481961c6ca
MD5 2d52630bfe88099a5160923f01fe5b85
BLAKE2b-256 c32cbd4805c3f03f2ea613ade0a666f0359c690fac0519fd5c1aa5bcf8e8a058

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91c975832ec812450e3707be57d92ac14563552be31a04602d5351fdd3818ae6
MD5 3402cd6001aec4044d68866f2b19a683
BLAKE2b-256 18643fb69671118c555df65044c3adc56879929b85915be5db63bccf42eccbf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.14-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7245a8077216acdfaf603f9f5f1ae90253ae2cbe6a3f3204be1d4512f02a761b
MD5 dbe3343800b1395f7d5f67e327dc066b
BLAKE2b-256 961d9d6101726ad33e305250f26651114836cdad5e6cee30b8a622e217f28ba4

See more details on using hashes here.

Provenance

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