Skip to main content

A batteries-included terminal app for local AI: a browsable model catalog, a search engine over your own files and code, and a chat that cites its sources. Per-project libraries, semantic and hybrid search, vision OCR, auto-built wiki. CLI, TUI, MCP server, REST API, and Python library in one process; no model server, no database server.

Project description

lilbee

A batteries-included local search engine for your data and code that you can talk to.

Project site  ·  PyPI  ·  Obsidian plugin  ·  REST API

Latest release (incl. pre-releases) lilbee on PyPI Python 3.11+ CI Coverage Typed Ruff Platforms License: Elastic License 2.0 PyPI downloads / month GitHub release downloads

Point it at your files, notes, and code and ask questions in plain English; every answer links back to the file and line it came from. Point it at nothing and it's still a clean local-AI chat with the model catalog wired up; cloud models too if you bring an API key, and an MCP server so any agent that speaks MCP can drive it.

lilbee chat with cited answers from a Crown Victoria owner's manual

It's all one program: a full-screen terminal app, a command-line tool, a Model Context Protocol server, an HTTP API, and a Python library. Run it when you want, close it when you're done; nothing left running in the background, no container to keep alive. It runs on your computer; lilbee uses a cloud model only when you pick one.

⚠️ Beta software

lilbee is in active beta development. Every release on PyPI is a pre-release; you must use --pre (or uv's --prerelease=allow) when installing. Interfaces, command names, and on-disk formats may shift between betas. Feedback, bug reports, and issues are very welcome; that's the whole point of the beta.

Latest pre-release (always): lilbee on PyPI →



Quick start

Two recommended ways to use lilbee, depending on whether you're the one driving:

  • Run lilbee for the full-screen terminal app. A welcome wizard picks a chat and embedding model, then you index files, search, and chat without leaving the TUI. The Settings screen exposes every retrieval knob (search depth, distance threshold, reranker, chunking) so you can tune lilbee to your library shape.
  • Wire it into your agent over MCP. Any MCP-aware coding agent calls lilbee_search / lilbee_add and gets back cited snippets it can quote. Agents can also fine-tune lilbee on the fly via lilbee_settings_set. Drop in the lilbee-mcp skill and the agent reads the full surface — every tool, every retrieval knob, and when to widen for prose vs narrow for code. See Agent integration.

Fine-tuning is a first-class capability. Defaults are sane and balanced for the common cases: chatting with your code, with code documentation, with crawled websites, and with long-form PDFs (manuals, ebooks, research papers). Every retrieval setting is writable — through the TUI Settings screen, /set slash command, MCP lilbee_settings_set, or config.toml. When the answer feels thin (or noisy), the right knob to move is usually top_k, max_distance, or diversity_max_per_source. The agent integration above lets a coding agent move them for you while you stay in chat.

CLI commands, the HTTP API, environment variables, and config.toml are also there as reference for scripting, headless runs, and custom integrations; you should not need them for everyday use. See the usage guide.

All the install options are in Install below: pip, uv, Homebrew, AUR, Docker, Nix, a standalone binary (no Python), CUDA wheels, or from source. Optional extras ([crawler], [litellm], [graph]) are there too.

Highlights

One install gets you a TUI, a CLI, an MCP server, a REST API, and a Python library. No daemon, no inference server, no vector database to stand up.

Compact: pip wheel is ~10-44 MB (vs the 450-600 MB bundled Electron UIs popular all-in-one desktop AI apps ship before any models load). The standalone binary that folds Python, the model runtime, OCR, the crawler, and the vector store into a single file lands around 253-365 MB across Linux, macOS, and Windows.

Answers cite the source line. Click a citation, jump to the file at the exact line.

Throw anything at it: PDFs, Office files, ebooks, source in 150+ languages, scanned pages (OCR), crawled docs sites.

Pull models from Hugging Face inside the app. Pick something, it downloads, it's ready.

Everything ships bundled in one process: in-process inference, a search engine, file ingestion, citations, an MCP server, and a REST API. The tradeoff is that lilbee's local model catalog tracks llama-cpp-python and lags Ollama on the newest architectures. For those, point lilbee at a running Ollama (or any OpenAI-compatible local backend) and its models show up in the picker alongside your native ones.

Everything stays local unless you opt into a cloud model. When you do, lilbee flags it.

Run globally, or drop a .lilbee/ next to .git/ to keep a project's library separate from your other stuff.

Agents can tune lilbee themselves over MCP — swap models, widen retrieval, rebuild the index, all without you leaving chat. See it in action.

Why lilbee

The first evening with a local model is fun. What makes it more than a novelty is grounding: the model needs context from your notes, your files, your code, or it runs out of places to go. lilbee pairs the chat with a real search engine over a set of documents you choose, so a local model can reason over your world and answer with citations you can click back to the source.

Standing this up used to mean a background daemon, a separate inference server, model files fetched by hand, and a retrieval layer glued on top. lilbee folds all of it into one install, in one process, in the terminal. Run it globally, or scope a library per project by dropping a .lilbee/ next to .git/, the same pattern git uses; a focused library answers better than one catch-all pile of everything.

The long-term goal: an Encarta 99 you build for yourself, from your own files, shaped to your needs.

What you can do with it

A library of your own files

Point lilbee at a folder of PDFs, notes, ebooks, or code and it builds a searchable library, with citations that click back to the source line. The pattern works for anything you have a lot of text about: a medical-textbook collection, a field's research papers, a car's service manuals, your company's internal wiki. Whatever you give it becomes searchable, and you can talk to it.

/add a PDF, watch the Task Center, ask a cited question

Let the agent set up lilbee for you

The fastest path to a useful lilbee install is to hand it to an MCP-aware agent and let it do the setup. lilbee_catalog_browse lets the agent see what's available, lilbee_model_pull installs picks, and lilbee_settings_set wires them into the embedding / reranker / vision roles and tunes the retrieval knobs for the library and question style you actually care about. No TUI, no config file, no restart. The agent already knows what chunk size, MMR weight, and reranker depth do. See Fine-tuning lilbee from your agent for the example prompt.

Grounding for AI agents

Once configured, lilbee plugs into whatever agent you use, over MCP. Feed it your project's docs, your dependency source, your API docs, your design notes; the agent stops making up function names and instead reads the actual code, cites file and line, and says it doesn't know when the answer isn't in your library.

lilbee stays the local part: your files, the search index, and the embeddings never leave your machine. The agent calls lilbee_search and gets back cited snippets. The demo below is lilbee talking to lilbee: an agent indexes lilbee's own source, then answers questions about how lilbee works with file:line citations.

an agent indexes lilbee's own source through lilbee's MCP server, then answers questions about how lilbee works with file:line citations

Offline copies of websites

Install the [crawler] extra, point lilbee at a docs site, a wiki, or a vendor's API reference, and the pages get fetched, converted to markdown, and added to your library. From then on you can search or chat with that copy of the site offline, even after it changes or goes down.

/crawl a Wikipedia page, then ask a cited question against it

How it's built

lilbee stands on established open-source projects, all embedded in one process:

Documents, code, and scanned images

Most retrieval tools throw your files at a PDF extractor and call it done. lilbee splits the work by what's being indexed:

  • Prose and structured documents (90+ formats: PDFs, Office files, ebooks, HTML, and more) go through Kreuzberg's extraction pipeline with heading-aware chunking, so each chunk keeps its section context.
  • Code goes through tree-sitter's AST-aware splitter across 150+ languages, so chunks map to real functions, classes, and modules instead of arbitrary line ranges.
  • Scanned PDFs and photos go through OCR: Tesseract for plain text, a local GGUF vision model that keeps tables and layout as markdown, or a remote vision model.

Retrieval returns things that make sense on their own, not fragments cut through an argument or a function signature.

Pick and tune your models

Chat, embedding, vision, and reranking models are installed and switched from inside the terminal: browse the catalog, pull a model, pick a role. Retrieval and generation expose 50+ settings (chunk size, search strictness, a second-pass re-scorer, how much weight topic relationships carry), edited from the TUI, environment variables, or a project-local config file. Sane defaults out of the box.

browse the model catalog, search Hugging Face Hub, pull a model live

Cloud models, when you want them

lilbee runs entirely on your machine by default. There are two ways to use cloud models when you want to:

  • Bring your own key, inside lilbee. Install the [litellm] extra and add an API key, then point the chat / embedding / vision / rerank role at a cloud model from the same model catalog. The TUI shows a persistent warning whenever a cloud role is active, so it's clear when chunks are leaving the machine.
  • Pair lilbee with a cloud agent over MCP. lilbee stays the local part: your files, the embeddings, the search index. Any MCP-aware agent calls lilbee_search / lilbee_add and gets back cited snippets. The Godot demo above is exactly this shape: a cloud-hosted coding agent on top of opencode, with the indexed Godot 4 reference and the search both running locally.

Either way your files and the index never leave the machine; only the queries and the snippets the model needs to answer cross the wire when you opt in.

TUI

lilbee (no args) launches a full Textual terminal app: streaming chat with clickable citations, a model bar with searchable pickers and a Search/Chat toggle, a Task Center for background jobs, and screens for the model catalog, settings, the setup wizard, and the auto-built wiki. Type / for the command list; tab completion works everywhere.

sweep through every TUI screen

Ctrl+P opens the Textual command palette, ? toggles the keybinding cheat sheet, /help opens the slash-command catalog. Every action lilbee can take is reachable from one of those three.

command palette, keybinding cheat sheet, slash-command catalog

The full demo reel (every screen and the MCP integration too) lives in docs/demos.md. The tape sources are in demos/. For commands and settings, see the usage guide.

Hardware requirements

Standalone mode runs entirely on your machine. No cloud required.

Supported platforms

Platform Minimum Recommended
Linux x86_64 A 64-bit Intel or AMD CPU from 2013 or newer: Intel Core i3/i5/i7 4th-gen (Haswell), Intel Xeon E3-12xx v3 / E5-26xx v3, AMD FX-95xx (Steamroller) or any AMD Zen-based chip. Anything corresponding to the x86-64-v3 microarchitecture level. A modern Intel Core / Xeon / AMD Ryzen / EPYC + an NVIDIA, AMD, or Intel Arc GPU
macOS arm64 Any Apple Silicon Mac (M1 or newer) running macOS 11+ M-series Pro / Max / Ultra
Windows x86_64 A 64-bit Intel or AMD CPU from 2013 or newer (same generations as Linux above), Windows 10/11 Modern desktop / workstation CPU + GPU
Linux ARM64 ARMv8 (NEON-capable): Raspberry Pi 4+, AWS Graviton, Ampere Altra, etc. Modern ARM server with 16+ GB RAM

Resources

Resource Minimum Recommended
RAM 8 GB 16 to 32 GB if you load several local models at once (chat + embed + rerank + vision); the actual footprint scales with the size and quantization you pick
GPU / Accelerator none required (CPU-only inference works) Apple Silicon (Metal) · any NVIDIA / AMD / Intel Arc GPU (Vulkan) · NVIDIA GPU + matching CUDA toolkit (opt-in CUDA-native wheels, see Install)
Disk 2 GB (models + data) 10+ GB if you load multiple models

Each active inference role (chat, embed, rerank, vision) runs in its own subprocess to keep the TUI responsive, so the memory you need follows the size of the models you keep warm.

Install

Two routes, and the difference matters:

  • Into your own Python with pip or uv (Python 3.11 to 3.14). Smaller install, picks the fastest CPU code path for your machine at runtime, managed with the tools you already use. Recommended if you have Python.
  • A self-contained bundle: the standalone binary, or the Homebrew / AUR / Nix / Docker builds that wrap it. Nothing else to install. The trade-off is a much larger download (the binary bundles its own Python runtime, llama.cpp, and the optional extras) and a small cold-start cost the first time it self-extracts. Recommended if you'd rather not deal with Python.

Have an NVIDIA GPU? Both routes have a CUDA build that's faster than the default Vulkan path. Skip to On NVIDIA hardware.

No external services either way; lilbee downloads and runs models locally. Optional, for scanned-PDF / image OCR: Tesseract (brew install tesseract / apt install tesseract-ocr) or a GGUF vision model.

How Command Notes
pip pip install --pre lilbee Recommended. The default wheel runs on any x86_64 CPU and uses your GPU via Vulkan / Metal automatically. Intel Mac: add --extra-index-url https://lilbee.sh/cpu/ (browse wheels).
uv uv tool install --prerelease=allow lilbee Same wheel as pip; fetches a Python for you if you need one.
Homebrew brew tap tobocop2/lilbee && brew install lilbee macOS arm64 / Linux x86_64. Bundled build; clears the macOS quarantine flag for you.
AUR paru -S lilbee Arch Linux. Wraps the Linux x86_64 binary; works with yay / pacaur / any helper.
Docker docker run --rm -v lilbee-data:/home/lilbee/data ghcr.io/tobocop2/lilbee:latest --help GHCR image, tagged by version and latest. Data lives at /home/lilbee/data. Mount a volume there.
Nix nix run github:tobocop2/lilbee NixOS, nix-darwin, or any host with nix. On Linux the flake bundles glibc, libgomp, and vulkan-loader so it runs on bare NixOS.
Standalone binary download for your platform → One file, own Python runtime, no pip needed. Linux needs glibc 2.28+; the macOS / Windows builds are unsigned (xattr -d com.apple.quarantine ./lilbee-macos-arm64 if Gatekeeper blocks it).
From source git clone https://github.com/tobocop2/lilbee && cd lilbee && uv sync && uv run lilbee For hacking on it. Needs git and uv.

On NVIDIA hardware

The default Vulkan build works on NVIDIA cards, but there is a dedicated CUDA build that links straight against libcuda.so.1 from your driver. It sidesteps the iGPU + dGPU Vulkan-loader crash that bites NVIDIA-on-Windows setups and is the faster path on any box where you would otherwise rely on Vulkan over an NVIDIA card.

Command
pip pip install --pre lilbee --extra-index-url https://lilbee.sh/cu125/
Homebrew brew install tobocop2/lilbee/lilbee-cuda
AUR paru -S lilbee-cuda
Nix nix run github:tobocop2/lilbee#lilbee-cuda
Binary lilbee-linux-x86_64-cu125 or lilbee-windows-x86_64-cu125.exe

Same lilbee command after install. The CUDA runtime (cudart, cublas) is bundled inside the binary; you only need the NVIDIA driver. Already have the regular lilbee installed? On AUR paru -S lilbee-cuda swaps it automatically (it conflicts_with / provides lilbee); on Homebrew run brew uninstall lilbee first. Older driver? cu124 and cu121 ship via the matching wheel indexes and as direct-download Linux binaries on the release page.

Then check it runs and pick a model:

lilbee self-check    # ~90 MB download; runs an inference + an embedding; "SELF-CHECK PASSED" on success
lilbee               # launch the terminal app; pick a chat + embedding model on the welcome screen

Everything past that lives in the usage guide: the TUI tour at the top (welcome wizard, search/chat toggle, model bar, catalog, settings, slash commands, wiki), then a reference section for users driving lilbee from outside the TUI (CLI commands, HTTP server, MCP integration, env vars, config.toml, optional extras).

Linux runtime requirements

The Linux x86_64 wheel and binary link the Vulkan loader at runtime. Most desktop distros (Ubuntu 22.04+, Pop!_OS, Mint) ship libvulkan1; bare Arch / Fedora / Alpine images don't, and lilbee self-check fails with cannot open shared object file: libvulkan.so.1. Install it once: sudo pacman -S vulkan-icd-loader (Arch / Manjaro), sudo dnf install vulkan-loader (Fedora, RHEL), or sudo apt-get install libvulkan1 (Debian, Ubuntu).

Optional extras

These only matter for a pip or uv install: add the name in brackets, e.g. pip install --pre 'lilbee[crawler,litellm]' (combine multiple, and --extra-index-url still works for CUDA). The standalone binary and the Homebrew / AUR / Nix / Docker builds already include all three. lilbee works without them either way.

Extra What it adds
[crawler] Index websites alongside your files: crawl a docs site or wiki to markdown, then search it offline. Recursive crawl with Playwright, live progress, cancel, change detection, SSRF guards, rate limits.
[litellm] Bridge to popular hosted model providers for chat, vision, or embeddings while other roles stay local. You provide the key; the TUI flags whenever a hosted model is active, and chunks sent to it leave your machine.
[graph] Concept-graph search: extracts the ideas in your documents and uses how they relate to surface matches plain keyword search misses. No extra model calls.

See the full guide on optional extras for configuration.

Upgrading

pip install --upgrade --pre lilbee
# or
uv tool install --reinstall --prerelease=allow lilbee

Agent integration

lilbee plugs into any agent over MCP or a JSON CLI. The repo ships a drop-in AGENTS.md, a lilbee-worker subagent for long ops, and a reusable lilbee-mcp skill. See docs/agent-integration.md to wire it up.

Live-indexing example: opencode on MiniMax M2.7 indexes a Godot 4 pathfinding subset (~3s), then lilbee_search-es for AStarGrid2D and answers method-by-method against your local files.

an MCP-driven coding agent indexes a small local godot subset and answers with cited methods

The same shape scales up. Pre-index Godot 4's full class reference (810 XMLs, 3449 chunks) and the agent can write a procedural level generator with every API call backed by a godot-classes/<Class>.xml:line citation; the side-by-side benchmark measured 4 hallucinated APIs without lilbee, 0 with.

cited codegen against the full Godot class reference

The full reel (every TUI screen and the agent demos) is in docs/demos.md.

HTTP Server

lilbee serve starts a REST API any tool or GUI can hit: search (with SSE streaming), document lifecycle, crawling, model management, configuration. See the REST API reference for the OpenAPI schema and the usage guide for invocation options. (These are HTTP server / REST docs; a Python-library reference is still in progress.)

The Obsidian plugin is a GUI built on it: it runs lilbee serve in the background, and every citation opens a Source Preview scrolled to the exact passage. Install via BRAT; the plugin README has setup.

Supported formats

Text extraction powered by Kreuzberg, code chunking by tree-sitter. Structured formats (XML, JSON, CSV) get embedding-friendly preprocessing. This list is not exhaustive; Kreuzberg supports additional formats beyond what's listed here.

Format Extensions Requires
PDF .pdf none
Scanned PDF .pdf (no extractable text) Tesseract (auto, plain text), or a GGUF vision model via the native mtmd backend (recommended, preserves tables, headings, and layout as markdown)
Office .docx, .xlsx, .pptx none
eBook .epub none
Images (OCR) .png, .jpg, .jpeg, .tiff, .bmp, .webp Tesseract
Data .csv, .tsv none
Structured .xml, .json, .jsonl, .yaml, .yml none
Code .py, .js, .ts, .go, .rs, .java and 150+ more via tree-sitter (AST-aware chunking) none

See the usage guide for OCR setup and model benchmarks.

Experimental

Two opt-in features that work but are still finding their final shape. Generation quality and retrieval behavior depend on your library, models, and knobs; expect to iterate. Feedback is welcome.

Wiki

lilbee analyzes the documents you've indexed and writes a wiki about them. Pages compound across sources instead of being one-per-document, so concepts and entities that show up repeatedly get their own page with citations from every source that mentions them. Pages live under $LILBEE_DATA/wiki/, grouped into concepts/, entities/, and a drafts/ queue when confidence is low. An index.md tracks them all and log.md records every build, ingest, and prune.

Every section is citation-verified against the source chunks and scored for embedding faithfulness before publish. Plain-text concept slugs inside page bodies are rewritten to [[wiki link]] form so graph-style markdown viewers can render the connections. Some pages will land in drafts/ for human review rather than publish direct.

See the Wiki section of the usage guide for the full command list and configuration.

Semantic chunking

A semantic-chunking mode is available as an opt-in alternative to the default fixed-size chunker. It uses embedding similarity to find topic boundaries, so each chunk is one coherent thought instead of a fragment that cuts through an argument. The benefit shows up on prose-heavy collections like novels, essays, long-form research papers, or interview transcripts. The trade-off is roughly 9x more embedding calls during indexing.

See the Semantic chunking section of the usage guide for trade-offs and how to enable it.

License

Elastic License 2.0 (ELv2). See LICENSE.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

lilbee-0.6.66b479.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.

lilbee-0.6.66b479-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b479-cp313-cp313-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.13Windows x86-64

lilbee-0.6.66b479-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b479-cp313-cp313-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lilbee-0.6.66b479-cp312-cp312-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.12Windows x86-64

lilbee-0.6.66b479-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b479-cp312-cp312-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lilbee-0.6.66b479-cp311-cp311-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.11Windows x86-64

lilbee-0.6.66b479-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b479-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file lilbee-0.6.66b479.tar.gz.

File metadata

  • Download URL: lilbee-0.6.66b479.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lilbee-0.6.66b479.tar.gz
Algorithm Hash digest
SHA256 ea456eb94d947882f084b30e5cdfb0b1de55bc668641e088faaff8702b6c5d23
MD5 e43ec80f418976b7eb77625a0842eea1
BLAKE2b-256 f15341044f0c9e6f437abfaa73fd15933e3cd3556f28cbf7346095864e75f575

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479.tar.gz:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b479-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cf52ebebc1589d5e7e45018fde1257fdb1054036b089b45d3109c9dc82b6c11
MD5 a7e64aa0d67fd5686b4fa5bf02cb2d28
BLAKE2b-256 4b9ac44fbab93b5cf27a1fdd13c32aa301ad4291f4caa2f92a68e31998427f3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b479-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lilbee-0.6.66b479-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 afa96b403b711292cdd1a8d08cc1d3871b6870cf2ed3473182dcc4f52c55ff22
MD5 48938e418c227e258a32416ebbf3a96d
BLAKE2b-256 a521936d4dd0ce3ea2eb3c9788bb3fe7ae4a696ab62ba36910c41496dabb8d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b479-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d03459b692d5cdcb49cce15d227115e4e40bf2bbc77dd19075143b9c0f84d87
MD5 d6bf9a84ea48fdf32ef1b07f18e8b05f
BLAKE2b-256 cb4faa17636bfb8c68c864dcd67eee01bc8ad2ea345624f2e12f7f747f17e8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b479-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0edb595df7d69c7d9283734b03a9865a9fcae5295de41277b7f49f809ade0a88
MD5 ecf542b3d3561b90a2cf64eb3a16e336
BLAKE2b-256 0b31e4099d21b28e724d187fe34f81fa53c4491f9b93a2bf9fa7a32d078ec479

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b479-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lilbee-0.6.66b479-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4f921e5e3902caef2578af56511e752298bfedcfb8bdb17e3e13f32864e07ad
MD5 cdebfa118d9bbd71fe03170af9b9b163
BLAKE2b-256 87858a76b743ce82bf52b1dd78d819fcbc28fdc1c94972d7782173c624b9c3c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b479-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 647c0bfb2eb2b098bed3fe07544cee3b81e156db4805351d82ac79ed3bcb152c
MD5 2527994826d7d0c16f0887aa44242f70
BLAKE2b-256 e5971cfb268da99d16c5890f13cde4451ed1c0ca6861a841b4e1e078f926bcad

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b479-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb8572f2c3e9b79ea125bd80ba5eacaa383fd38e0842e4a977eabcceb85bae98
MD5 4c6b4acc1669cd6c1844cadb1d14c775
BLAKE2b-256 6e62cc68b3004011f4a3c62c0b2f0a82a418d189657e710f5f7e47ac5ceac703

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b479-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lilbee-0.6.66b479-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 436c8b346341373340401172672dc90acda1759dd6f1b29b2faf01f9de88c1f1
MD5 8d7c93ac6c3d68a5366e525b9548dbc2
BLAKE2b-256 099912e4eaebd63256dd0387dcad83990841d08c427b6e570c79c04a47fdfd9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b479-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb0a65fd3bb5c90dbb650e91bd1bd5d004d470381f1d727b953bbf8883610fc9
MD5 1f5ba6b50d19ddee8a803fd964c5c9ae
BLAKE2b-256 ee239eba3a481aa5304f8f05e4c04be40a0ed7ffb7a70c753981f5a9d965d5d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on tobocop2/lilbee

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

File details

Details for the file lilbee-0.6.66b479-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b479-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6d21b6319e0a91588456e06fe894f4d8cdd253d282ef91f945209cd10903804
MD5 80c657ecd31b588504050aa7dab2a8e4
BLAKE2b-256 3e8bbf4d46b6319fa7587e23bfee3cccd22a50049f4d6d43e8120d6ad2729f82

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b479-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on tobocop2/lilbee

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