Skip to main content

eyecore

Core data retrieval and organisation library — SQLite DB management, topic graph, corpus management, and LLM integration.

Features

  • BaseDB — lazy SQLite connection with transparent .db.gz decompression to user cache
  • TopicGraph — generalized topic registry with parent/child relationships, BFS traversal, and typed links
  • CorpusManager — on-demand corpus checkout (Project Gutenberg, URL, git) with FTS5 indexing
  • LLMClient — lazy-loaded LLM wrapper with auto-detected backends (Ollama, llama-cpp, OpenAI-compatible)
  • compress_db / decompress_to_cache — platform-aware compression utilities for bake scripts

Installation

pip install eyecore

With optional extras:

pip install "eyecore[llm-ollama]"   # Ollama backend
pip install "eyecore[llm-cpp]"      # llama-cpp-python backend
pip install "eyecore[llm-openai]"   # OpenAI-compatible backend
pip install "eyecore[corpus]"       # corpus download support

Quick start

from pathlib import Path
from eyecore import BaseDB, TopicGraph, CorpusManager, LLMClient

# Lazy SQLite — decompresses .db.gz to user cache on first access
db = BaseDB("myapp", gz_path=Path("data/myapp.db.gz"))
rows = db.fetchall("SELECT * FROM entities LIMIT 10")

# Topic graph
graph = TopicGraph(db.conn)
related = graph.get_related("topic-id")
tree    = graph.subtree("root-id")

# LLM — auto-detects Ollama / llama-cpp / OpenAI
llm = LLMClient.get()
if llm.is_available():
    summary = llm.summarize("Some long text to summarize...")
    topics  = llm.extract_topics("Article text about AI and machine learning...")
    report  = llm.generate_report(articles, "Technology", "title", "summary")

LLM configuration

Configure via environment variables:

Variable Default Description
LLM_BACKEND auto ollama, llama-cpp, or openai
LLM_MODEL llama3 Model name (Ollama) or model ID (OpenAI)
LLM_HOST http://localhost:11434 Ollama server URL
LLM_MODEL_PATH Path to GGUF model file (llama-cpp)
OPENAI_API_KEY API key for OpenAI-compatible endpoints
OPENAI_BASE_URL Base URL for OpenAI-compatible endpoints

License

MIT — see LICENSE

Download files

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

Source Distribution

eyecore-1.1.0.tar.gz (39.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

eyecore-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (271.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp314-cp314-win_amd64.whl (134.1 kB view details)

Uploaded CPython 3.14Windows x86-64

eyecore-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (233.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

eyecore-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl (236.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

eyecore-1.1.0-cp313-cp313-win_amd64.whl (134.2 kB view details)

Uploaded CPython 3.13Windows x86-64

eyecore-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (234.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

eyecore-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

eyecore-1.1.0-cp312-cp312-win_amd64.whl (134.1 kB view details)

Uploaded CPython 3.12Windows x86-64

eyecore-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (234.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

eyecore-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl (236.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

eyecore-1.1.0-cp311-cp311-win_amd64.whl (135.7 kB view details)

Uploaded CPython 3.11Windows x86-64

eyecore-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (270.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

eyecore-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (235.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

eyecore-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl (237.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

eyecore-1.1.0-cp310-cp310-win_amd64.whl (135.7 kB view details)

Uploaded CPython 3.10Windows x86-64

eyecore-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (270.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

File details

Details for the file eyecore-1.1.0.tar.gz.

File metadata

  • Download URL: eyecore-1.1.0.tar.gz
  • Upload date:
  • Size: 39.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eyecore-1.1.0.tar.gz
Algorithm Hash digest
SHA256 7b78f04a3f344c2b5d6dbc517b685decd5d037c67ba39c2f1a7079b495cfde49
MD5 2a5c0a389dd5c73399d6d67cf0896449
BLAKE2b-256 00ed89bb1bba7afadfe7e32647030db69c89753e8de9547773b1e4c3e34da19f

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0.tar.gz:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a16ebe09979b44293fa30e4ac1d7fff21a1dadc090fa1c2b822d414399dfa51e
MD5 784eca4b2e09bac405ba477fe42a12f6
BLAKE2b-256 26ce1cbb1bb6c56deffc84c985321abc2ca3bb63ab4ce86ce169ad88dc99a974

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8eb031835a7c5c2bbd3973974b070a8736f520a41600179853d3fd0fc8468df
MD5 e076cd5ff9a9e1e4fcce70c37c3ef742
BLAKE2b-256 d97caee32ba1ebe2e0b8fb63a55d61e006f1432e4ae88bcd2066e382038adf51

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7cde66f231d3a7515cdde3ed0ed5ea224f43b38cae896c8cc0c42e58518cc30
MD5 98a63058e12a275cf3f8a1d432f1d9c9
BLAKE2b-256 848c3d83e7aef561bb87e0394ffc4f33f0ad78431ce7861de5e4ed49e5006848

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c6f85286b32bd5cd54af75fb2f633d803b9532fd031a7e440d84fec810d912a
MD5 552e8e5e9f90cfb9da034523c6c928ce
BLAKE2b-256 b6cd5c04c76e4666775494e2aa14c944416e9ad32069b1891d5b27c503eddc78

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: eyecore-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 134.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eyecore-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 417c53e464e52ed5d9cedd83a6f949329352a14da864c817e37518e7c4307a0f
MD5 06b8dc03fb6f503740f3fb058155c69d
BLAKE2b-256 ba65bd9ee8c14aaf62b29fef19af0382d5f8ce9f2abaf5416254708babe03091

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba53eb378c0d087b77b98667b0c9830e83e2ab5e02f1fe1953c81df65b403607
MD5 ec84aa002780632e461717ad3406558f
BLAKE2b-256 6f74300a299a603fa2ec7812833a0d7bc5b291c857072c97d5407fd33d18e6aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be5ea82ad2b9ed2bea8ae76ff725b268750bc3bda9bba94d7c0f135d6d35b68b
MD5 964c744a6ad83cfcc558c2fe1806aca3
BLAKE2b-256 09aa79bb80399a8c0b2e763fcce99a8249b85f0e9d6db70d26e5b3366cb8be78

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a9eeb1ef303b1429ed0ad3f7f4e170c547c6247ba36112a72683fb9ab24392c
MD5 12a62e18adf54f103ed1c703f732f84c
BLAKE2b-256 589f6840e1333bf41b55ea4b1210b6b911d94b33f25ffa4f8a19bc93a352ae92

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: eyecore-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 134.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eyecore-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e64c185b479f084173e8073283d27ea77e9d078e1b454d5d4f837a31afb9a4ec
MD5 147885cfb630a393dcedbdeca07c883e
BLAKE2b-256 f574fa8a6d883d5e89905e3f48a7e39981d54406a048e1e781cd457a7e8859af

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea73d8ab49709e35f0b4c67ed91e70c38b95b1531610438e6386ae53f1f40367
MD5 46ce174d21320d4378ce7dbf4bc40b46
BLAKE2b-256 e9ff00d1fbe30d03adf218964c86ccfd59c1f0c086538e17744e4df9245070c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bef4dade51bf8b5a4a89a89781b9690a06e3ee73927319b2f432cc0c656392f0
MD5 8637de9fbeb92fc75b00a55de00158f2
BLAKE2b-256 2ca10c083f101b9d034baa88dc19188d5d9287ea2fde0ea5b68c1d9af8ac501f

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57d29f38e2bf49a70c341019d5168a31a0c27cf628779a0afff41472a139a377
MD5 038bfd35e48d364e0130ec22985f75a2
BLAKE2b-256 d818224697ee29da022866a1e8c7ac3f4e1b7fb2ff1a5ec1d7a908ab3a0b413f

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: eyecore-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 134.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eyecore-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1c7eedc86e5820344df129a1ed2ac607a19ceb0ded11efea133f2dd1232c7a8
MD5 4c0f3225497ad30b4af931b497f26f7d
BLAKE2b-256 116dcfa49096c0824eafc14d0b7097d7c25298ff024a5f26c5dcdc90fb70dceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23de7a0d4ff5c0511e159f8cc8d3ecc169e6584972e9ef71bc785d344b23603a
MD5 65e9a1c89ffc1a76efa43ddd72954e16
BLAKE2b-256 c5ebbffb49de0747c2285bc613d2789148decd0dc6dc1ad7130277fd2ad6b0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acae57ff3463d365f21c8ce355f543b0bd68c32f7fccd819967e84a8b3aaa9c1
MD5 4ad654ca2095d498bc28a80fc009bc13
BLAKE2b-256 cd58bbe3b18242d24b26aae583da85e0456e99c8fa41b39851e199a783d1708c

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbc326c44d3a58a065e1b3f9144f9b2b325f45e8e22d34fe7e81da6fc175dc7b
MD5 ee027b1e517ebe713f7b76147bd99ed7
BLAKE2b-256 24936f58cfa110e51b68b03f96c6c17808e671bd40361569f436ff8773b23ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: eyecore-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 135.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eyecore-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d156df1b3003ecbe83b932b99c65bae02e0de580516a54a711ada050d31cf10
MD5 9075d4ca457a51f8f702d597e015c8ce
BLAKE2b-256 3298c6d7acc0446ffdb34eff0432dd628c34c7a43efe71249ae407244adf5b3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88add1b9041105dd9ad01839459d7c1e09eb56459ea9c818cd493c7fb3cae3ef
MD5 82b78924c6083cab29e7380aaf3cbb20
BLAKE2b-256 983dd668e33a62fad8103769b8fe161db00fb891fe744b63d1f3385ae536daaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13e7ab7777c024bc9dff1e4f581be8d3fce26db8e4220528db4c5acdec472a56
MD5 283448094d4d0c2c0f81cc63e97181f3
BLAKE2b-256 3f8f832dcb6ed6287e8ab02d4141cb4e125d517d0d5e5d827dd4c6b615fa61cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a58b8c447506e30975106da7e2282bebd25dc09310fb824fabfb4ff64d3464bb
MD5 aeacb9a459ab5a44fe26a7716d09a316
BLAKE2b-256 99884b8640969b34dee896fd0b9ce425a89e97543d80cdc42aee806267900048

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: eyecore-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 135.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eyecore-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e101793beb7f89af208ab286b68cc363d6b2bc6759976fad20a9b88c4685957
MD5 afe5e7b01ba25efeb24004720e07ec60
BLAKE2b-256 ce96a81c7da2100f102d2d8c951b5b3b9c4143903f02204c9a01aa4208acf31d

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eyecore-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eyecore-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a391ec44e18efd7c27cf88f79b5b9a528f588f2c513162e587a3dec3054fc74
MD5 7da956360a5fc27d88c6387838e90da3
BLAKE2b-256 65f68998df7b8ff3c03f004374b9ae5aae3093ac34a13a35fd818a73966f37b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for eyecore-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/EyeCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.1.0 This release

23 files

1.0.0

21 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page