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  ·  API docs

Latest release (incl. pre-releases) lilbee on PyPI Python 3.11+ CI Coverage Typed Ruff Platforms License: Elastic License 2.0 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 just a fast chatbot.

> what does the oil pressure warning mean?

  the oil pressure warning indicates low oil pressure.[1]
  when the light stays on, stop the engine immediately.[2]

  ─── sources ──────────────────────────────────
  [1] owners-manual.pdf:42    [2] owners-manual.pdf:43

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

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 program, one install. A model catalog, a search over your own files and code, and a chat. The same executable is also a CLI, a Textual TUI, an MCP server, a REST API, and a Python library. No background daemon, no separate inference server, no vector database to stand up.
  • Answers cite the source line. Ask a question; get a reply with clickable citations pointing back to the exact line they came from.
  • Bring your own files. PDFs, Office files, ebooks, code in 150+ languages, scanned pages and photos (OCR), and crawled docs sites turned into searchable markdown.
  • A built-in model catalog. Browse and pull models straight from Hugging Face Hub, from inside the app. lilbee is the model runtime; no hunting for files yourself.
  • Runs on your computer. Models, index, and files all stay local. lilbee uses a cloud model only when you pick one, and flags it when it does.
  • Per-project libraries. Run globally, or drop a .lilbee/ next to .git/ the way git does; each domain stays its own clean library.

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.

An Encarta 99 you build for yourself, from your own files, shaped to your needs.

Previews

ASCII sketches of each screen below: the shape, not the pixels. Written walkthroughs are under docs/benchmarks/: Godot level generator and vision OCR model comparison.

Chat. The default screen. Streaming replies with clickable citations.

 ┌─ lilbee ──────────────────────────────────────────────────────┐
 │ [Chat]  Catalog  Status  Settings  Tasks         [INSERT]     │
 │                                                               │
 │ You:    what does the oil pressure warning mean?              │
 │                                                               │
 │ lilbee: The oil pressure warning indicates low oil            │
 │         pressure.[1] When the light stays on, stop the        │
 │         engine immediately.[2]                                │
 │         ─────────────────────                                 │
 │         Sources                                               │
 │         [1 owners-manual.pdf:42]   <- click to open           │
 │         [2 owners-manual.pdf:43]                              │
 │                                                               │
 │ ┌───────────────────────────────────────────────────────────┐ │
 │ │ Ask anything...                                           │ │
 │ │                                                           │ │
 │ │ Chat [Qwen3 0.6B]  Embed [Nomic v1.5]   [Search|Chat]     │ │
 │ └───────────────────────────────────────────────────────────┘ │
 │ SYNC vault   [============------------]  42%                  │
 └───────────────────────────────────────────────────────────────┘

Task Center. Every background job (sync, crawl, wiki build, model pull) in one place. Global concurrency cap; new tasks queue when full.

 ┌─ Task Center ─────────────── [cap 3/3] [Clear]┐
 │ ACTIVE (2)                                    │
 │   [============-----]  42%  PULL  Qwen3 8B    │
 │   [======-----------]  18%  SYNC  vault       │
 │ QUEUED (1)                                    │
 │   CRAWL  https://docs.example.com             │
 │ COMPLETED                                     │
 │   [v] SYNC  vault                  2 min ago  │
 │   [x] PULL  mistral                5 min ago  │
 │   [v] ADD   cv-manual.pdf         12 min ago  │
 └───────────────────────────────────────────────┘

Wiki. Auto-generated concept and entity pages, with drafts awaiting review.

 ┌─ Wiki ────────────────────────────────────────┐
 │ Filter pages...                               │
 │                                               │
 │ Concepts (8)                                  │
 │   Braking Systems               5 src         │
 │   Cooling System                2 src         │
 │ Entities (12)                                 │
 │   Henry Ford                    3 src         │
 │ Drafts (2)                                    │
 │   Tire Pressure                 1 src         │
 ├───────────────────────────────────────────────┤
 │ ┌─ Braking Systems ────────────────────────┐  │
 │ │ 5 sources | faithfulness 0.92            │  │
 │ │                                          │  │
 │ │ Modern braking systems combine hydraulic │  │
 │ │ actuation with ABS to prevent wheel      │  │
 │ │ lockup under heavy deceleration.[1]      │  │
 │ │                                          │  │
 │ │ [1 brake-primer.pdf:8]  <- click         │  │
 │ └──────────────────────────────────────────┘  │
 └───────────────────────────────────────────────┘

Model catalog. Browse models from Hugging Face Hub, pull one with a click, and switch roles without leaving the terminal. * marks the developer's pick for each role.

 ┌─ Model Catalog ───────────────────────────────────┐
 │ [ Local | Frontier ]                              │
 │ [All tasks v] [All sizes v]                       │
 │ search...                       [Grid | List]     │
 │                                                   │
 │ Our picks                                         │
 │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐   │
 │ │ Qwen3 0.6B *│ │ Nomic v1.5  │ │ BGE Rerank  │   │
 │ │ [chat]      │ │ [embed]     │ │ [rerank]    │   │
 │ │ 450 MB  ok  │ │ 274 MB  ok  │ │ 1.2 GB      │   │
 │ │ [Use]       │ │ [Use]       │ │ [Pull]      │   │
 │ └─────────────┘ └─────────────┘ └─────────────┘   │
 │                                                   │
 │ Chat                                              │
 │ ┌─────────────┐ ┌─────────────┐                   │
 │ │ Qwen3 8B    │ │ Phi-4 14B   │                   │
 │ │ 4.9 GB      │ │ 9.1 GB      │                   │
 │ │ [Pull]      │ │ [Pull]      │                   │
 │ └─────────────┘ └─────────────┘                   │
 │                  [Load more]                      │
 └───────────────────────────────────────────────────┘

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.

Grounding for AI agents

lilbee plugs into whatever AI agent you already use, over MCP. Feed it your project's docs, your dependency source, the vendor SDK reference, your design notes, and the agent stops making up function names: it reads the actual code it's about to call, cites the file and line, and says it doesn't know when the answer isn't in the corpus, instead of guessing.

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.

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.

Cloud models, when you want them

lilbee runs entirely on your machine by default. To point a role at a cloud-hosted model, install the [litellm] extra and add an API key; the TUI shows a persistent warning whenever a cloud model is active, so it's clear when chunks are leaving the machine.

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.

See Previews for the shapes and the usage guide for commands and settings.

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, but a large file on a fixed CPU baseline (a 2013-or-newer x86_64 chip), a touch slower on newer hardware than the pip / uv wheel. Recommended if you'd rather not deal with Python.

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://tobocop2.github.io/lilbee/cpu/.
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).
CUDA-native pip install --pre lilbee --extra-index-url https://tobocop2.github.io/lilbee/cu125/ Only for the last bit of NVIDIA speed; the default wheel already uses your GPU via Vulkan. cu121 / cu124 / cu125 — match nvidia-smi.
From source git clone https://github.com/tobocop2/lilbee && cd lilbee && uv sync && uv run lilbee For hacking on it. Needs git and uv.

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 (commands, slash commands, settings, the API) lives in the usage guide.

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 is a retrieval backend for AI coding agents, over MCP or a JSON CLI: search, document lifecycle, crawling, model management, and the wiki, all exposed as tools, scoped to documents, wiki pages, or both. See docs/agent-integration.md for how to wire it up.

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 API reference for the OpenAPI schema and the usage guide for options.

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 corpus, 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 corpora 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.66b471.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

lilbee-0.6.66b471-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.66b471-cp313-cp313-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.13Windows x86-64

lilbee-0.6.66b471-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.66b471-cp313-cp313-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

lilbee-0.6.66b471-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.66b471-cp312-cp312-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

lilbee-0.6.66b471-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.66b471-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: lilbee-0.6.66b471.tar.gz
  • Upload date:
  • Size: 1.7 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.66b471.tar.gz
Algorithm Hash digest
SHA256 2a1a495dee133c3f589f1b7fc88ead692c09f898ffa35bbd10a8cd9939fcc3db
MD5 cfbb7ba582fd2dac9a329c95e1927ed1
BLAKE2b-256 78a21956d9289bbbd91407142ae1d0357362056a46902857974a69ee7de99d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471.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.66b471-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b471-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1e688ca9e15979629badf44534d8522d1e99d30c9e06e946d96e2399beb09e7
MD5 44397aad6c3c0a4708cc1ce8f41bb21f
BLAKE2b-256 e3013e063c0c26850081dd7daeb7c3f818762178174a0ac37fa23157239fec41

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b471-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.66b471-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4fe2b2a7a5ebfe51c23eac46a94e8b37e9e7b3243136e5c14e5ae89dd131a78a
MD5 431678feaffd107af196e4c35df06fdb
BLAKE2b-256 fed8b8195dd5281c0ad58d84439ee46abcdd42a9a0696a401fd31b472a7ac64c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b471-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 230629d763144a92199ceac48ace7ff1c9060fa5a7368fb0eed51a4a663e7d7d
MD5 c9f225427e77a8a8b34cd47aaa605cc8
BLAKE2b-256 6fedc3a2623eecf752a757806d8ffb01b854303d694b91b1d69b2767181190c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b471-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 022bda3b808c8e9f1cbe7b85f3628f2dae16bd74e27b02eb02cd446d15b349d8
MD5 2903c58dfcb155a648ecccab4676c96b
BLAKE2b-256 75e7f92cd151e3e68c33f5a257ae558cf74e5f7a59e0bdfd981ac03478027279

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b471-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.66b471-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 950fb4bc5c7d1163e9499557aa9295a66379bf102329247e094a8c568b016ff3
MD5 3cf93dcba9161800455943814c9111a2
BLAKE2b-256 d2cb758ee8babf15e618a5a8b9e052c9dfd65df601d4c29f868d2b8b8a6058c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b471-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc100283eab94aa5acf4dd3e544f0843bcfc2912b883481f00c1cfd1ae0f58c3
MD5 8e3b5e6d059ac69220c42806df48b841
BLAKE2b-256 989ae12e7ebd6bfc11bba0164d7b8c53852b4fb6024afe8b05925b7bbfcb9850

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b471-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e9ed291b7cad1655ccefa51269e118443cc4faea0db214bd7c92f0aba78a0e9
MD5 2d540b79f0793690d7c7d46bc5c4aa89
BLAKE2b-256 e01c61a1ce9679148f8f3ffc8a352eec2688b4aaf01e08c418f90ab1d5f7809d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b471-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.66b471-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 736406ecf27d93c6c019a3a006c9c967d0d862a5e136433b28d0e9c300d1bbc8
MD5 c82a39810128923f4ea08f9b1884284c
BLAKE2b-256 1e5f396d106566bd51341d96dbe4ae035c1783dc7bde1e49d9a75744cf19b600

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b471-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e869123af2c2f75c66a887281c715362c5b0e237741a6cd84092a6a4fb4fc8e9
MD5 15bc6203c9d2d5c19c457bcbd666bda8
BLAKE2b-256 a8213c4f5c841948bfc103319214f56323325154a5087768ffdd698bb73c2a39

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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.66b471-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b471-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdd0fe9d87e5a322d8b5622bab07a9f1ec329a7d24ff6015ddadc00388935526
MD5 ddda733077e02ff3dccb8f94172c9672
BLAKE2b-256 cdf087e39d504783340cb89f14d362cf7c2c6bde217212d36f1233dfc10210c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lilbee-0.6.66b471-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