Skip to main content

Terminal-first local RAG and AI chat for your own documents, code, and crawled websites. Semantic and hybrid search, vision OCR, auto-built wiki, browsable GGUF model catalog. One install, no sidecars. CLI, TUI, MCP server, REST API, and Python library in one process.

Project description

lilbee

A terminal-first local search engine for your own files, websites, and scanned documents. One install, no sidecar services, fully offline by default.

PyPI Python 3.11+ CI Coverage Typed Ruff Platforms License: Elastic License 2.0 Downloads

⚠️ 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 →



Why lilbee

Local AI tools have gotten great at getting you to a chat window fast. The first evening with a local model is genuinely fun. What makes it stick past the novelty is grounding: the model has to actually know your files, your notes, your codebase. Without that, the conversation runs out of places to go.

The interesting part of local AI isn't the chatbot alone. It's pairing a chatbot with a real search engine over your own documents. Index your stuff, retrieve what matters, let a local model reason over it, get answers with citations you can click back to the source. Now the model knows your world.

Historically that meant juggling a background daemon, a separate inference server, model files fetched by hand from the web, and a retrieval layer glued on top. lilbee bundles all of it into one install. Everything lives in one process, in the terminal, including a browsable GGUF model catalog.

The same executable ships a Textual TUI, a REST API, an MCP server for AI agents, and a Python library. It runs globally by default, or per-project by dropping a .lilbee/ next to .git/, the same pattern git uses. Focused project vaults search better than one giant catch-all index.

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

Previews

Real terminal recordings coming soon. Previews below give the shape of each screen. Written walkthroughs are under docs/benchmarks/: Godot level generator and vision OCR model comparison.

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

 ┌─ lilbee ──────────────────────────────────────────────────────┐
 │ [💬 qwen3:0.6b ▾] [🗄 nomic-embed ▾] [OCR] [All|Wiki|Raw]     │
 │───────────────────────────────────────────────────────────────│
 │                                                               │
 │ You:    what does the oil pressure warning mean?              │
 │                                                               │
 │ lilbee: The oil pressure warning indicates low oil            │
 │         pressure.[¹] When the light stays on, stop the        │
 │         engine immediately.[²]                                │
 │         ─────────────────────                                 │
 │         Sources                                               │
 │         [¹ owners-manual.pdf:42]   ← click to open            │
 │         [² owners-manual.pdf:43]                              │
 │                                                               │
 │───────────────────────────────────────────────────────────────│
 │ Ask anything...                                       [Send]  │
 │ 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                                     │
 │   ✓ SYNC  vault                      2 min ago│
 │   ✗ PULL  mistral                    5 min ago│
 │   ✓ 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.[¹]      │  │
 │ │                                          │  │
 │ │ [¹ brake-primer.pdf:8]  ← click          │  │
 │ └──────────────────────────────────────────┘  │
 └───────────────────────────────────────────────┘

Model catalog. Browse, install, and switch roles without leaving the terminal. marks the featured pick for each role.

 ┌─ Model Catalog ───────────────────────────────┐
 │ [All tasks ▾] [All sizes ▾] [Featured ▾]      │
 │ 🔍 search...                  [Grid | List]   │
 │                                               │
 │ Our picks                                     │
 │ ┌────────────┐ ┌────────────┐ ┌────────────┐  │
 │ │ Qwen3 0.6B★│ │ Nomic      │ │ BGE Rerank │  │
 │ │ ▌chat ▐    │ │ ▌embed▐    │ │ ▌rerank▐   │  │
 │ │ [GGUF]     │ │ [GGUF]     │ │ [GGUF]     │  │
 │ │ 450 MB ✓   │ │ 274 MB ✓   │ │ 1.2 GB     │  │
 │ │ [Use]      │ │ [Use]      │ │ [Pull]     │  │
 │ └────────────┘ └────────────┘ └────────────┘  │
 │                                               │
 │ Chat                                          │
 │ ┌────────────┐ ┌────────────┐                 │
 │ │ Qwen3 8B   │ │ Phi-4 14B  │                 │
 │ │ [GGUF]     │ │ [GGUF]     │                 │
 │ │ 4.9 GB     │ │ 9.1 GB     │                 │
 │ │ [Pull]     │ │ [Pull]     │                 │
 │ └────────────┘ └────────────┘                 │
 │               [Load more]                     │
 └───────────────────────────────────────────────┘

What you can do with it

A personal encyclopedia of what you've collected

Point lilbee at a folder of PDFs, notes, ebooks, or code and it indexes them into a searchable archive with citations that click back to the source line. The same pattern works for anything you have a lot of text about: a medical textbook collection, a guitar theory library, a field's research papers, a car's service manuals, your company's internal wiki. Whatever corpus you give it becomes a searchable, talkable version of exactly what you have.

Grounding for AI agents

For programmers, lilbee plugs into whatever AI agent you already use (via 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 tells you when the answer isn't in the corpus instead of guessing. That matters: a lot of AI today produces confident-sounding guesses and charges per token for them. lilbee is built the other way. Answers should come from sources you can check, and the system should be willing to say it doesn't know.

Offline copies of websites

Web crawling paired with local search and chat takes one command. 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 indexed. From then on you can search or chat with that site completely offline, even if it changes or goes down.

How it's built

Under the hood lilbee stands on established open-source projects: Kreuzberg handles document parsing, LanceDB is the embedded search layer, llama-cpp runs models locally, crawl4ai and Playwright crawl the web, and Textual draws the terminal. The architectural bet is that everything stays embedded in one process. Most systems in this shape deploy a vector database and a model server separately, usually reaching for a cloud-hosted search service (Pinecone, managed Qdrant, managed Weaviate) to avoid operating them, which moves your data onto someone else's servers. lilbee skips that layer entirely. Copy the executable onto a laptop and you have a complete local search-and-chat stack with nothing to deploy.

Documents, code, and scanned images

Document and code processing get treated as a first-class problem. Most retrieval libraries throw your files at a PDF extractor and call it done. lilbee splits the work along the grain of what's being indexed: prose and structured documents (90+ formats across PDFs, Office files, ebooks, HTML, and more) go through Kreuzberg's Rust-based 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. Retrieval returns things that make sense on their own, not fragments that cut through an argument or a function signature.

Scanned PDFs and photographed notes go through an OCR pipeline with a choice of backends: Tesseract, a local GGUF vision model via llama-cpp's mtmd backend (which preserves tables and layout as markdown), or a remote vision model through the SDK backend.

Pick and tune your models

Chat, embedding, vision, and reranking models are installed and switched from inside the terminal: browse the catalog, pull a GGUF, pick a role. Retrieval and generation are deeply tunable. You can make chunks smaller for finer-grained matches, make search stricter to filter out loose results, skip automatic query rewriting for faster responses, turn on a second-pass re-scorer for precision over the top results, or lean more on topic relationships when your corpus has lots of interconnected ideas. All editable from the TUI, environment variables, or a project-local config file, with sensible defaults out of the box.

Local-first, frontier-capable

lilbee is built as a local-first tool. The TUI shows a persistent warning whenever a cloud-hosted model is active so it's clear when chunks are leaving the machine. Popular frontier models are one pip install --pre lilbee[litellm] away when a local model isn't enough, so the power is there when you need it.

TUI

lilbee with no args (or lilbee chat) launches a full Textual terminal app. Chat streams replies with clickable citations. A Task Center tracks every background job (sync, crawl, wiki build, model pull) and lets you cancel them with /cancel. Other screens cover the model catalog (/models), settings (/settings), first-time setup wizard (/setup), and the auto-built wiki (/wiki). Tab completion works for slash commands, file paths, model names, setting keys, and themes.

See Previews for a visual and the slash-command reference for the full list.

Hardware requirements

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

Resource Minimum Recommended
CPU x86_64 (Sandy Bridge / 2011+) or ARM64 (any) x86_64 with AVX2 / FMA, or Apple Silicon
RAM 8 GB 16 to 32 GB
GPU / Accelerator none required (CPU-only inference works) Apple Silicon (Metal) · any NVIDIA / AMD / Intel Arc GPU (Vulkan) · NVIDIA GPU + matching CUDA toolkit (CUDA-native, see Install)
Disk 2 GB (models + data) 10+ GB if using multiple models

The default PyPI wheel uses ggml's runtime CPU dispatch — it ships every CPU kernel variant (SSE4.2 / AVX / AVX2 / AVX-512) and picks the highest one your CPU supports at startup. On Linux/Windows it links Vulkan for GPU acceleration; on macOS it links Metal. NVIDIA users get GPU acceleration through the NVIDIA Vulkan driver automatically — no CUDA installation required. The opt-in CUDA wheels (above) buy 5–15% extra perf for users who specifically want CUDA-native kernels.

Popular frontier models are optional; install with pip install --pre lilbee[litellm].

Install

Prerequisites

  • Python 3.11, 3.12, 3.13, or 3.14
  • Optional (for scanned PDF / image OCR): Tesseract (brew install tesseract / apt install tesseract-ocr) or a GGUF vision model (see vision OCR)

No external services needed. lilbee downloads and runs GGUF models locally via llama-cpp-python.

Default install (recommended for almost everyone)

The default wheel ships with runtime CPU dispatch (works on every x86_64 CPU from Sandy Bridge / 2011 forward) and GPU acceleration via Vulkan on Linux/Windows (covers NVIDIA / AMD / Intel Arc) or Metal on macOS arm64. If you have any modern GPU, this gets you GPU-accelerated inference with zero opt-in.

pip:

pip install --pre lilbee

uv:

uv tool install --prerelease=allow lilbee

Verify the install works on your hardware:

lilbee self-check

This downloads a tiny model (~90 MB), runs an inference, and an embedding. Exits 0 with SELF-CHECK PASSED on success.

NVIDIA users wanting CUDA-native (5–15% faster than Vulkan)

The default wheel already uses your NVIDIA GPU through Vulkan. You only need a CUDA wheel if you want the absolute last bit of performance out of CUDA-native kernels.

CUDA wheels live on a per-CUDA-version index (because each is linked against a specific CUDA runtime). Pick the index that matches your installed CUDA toolkit:

# CUDA 12.4
pip install --pre lilbee --extra-index-url https://tobocop2.github.io/lilbee/cu124/

# CUDA 12.5
pip install --pre lilbee --extra-index-url https://tobocop2.github.io/lilbee/cu125/

# uv equivalent
uv tool install --prerelease=allow lilbee \
  --extra-index-url https://tobocop2.github.io/lilbee/cu125/

Don't know your CUDA version? nvidia-smi (look at the top-right corner). NVIDIA driver 555+ supports CUDA 12.5; older drivers may need cu124.

Pre-built executables (no Python required)

Download a single binary that bundles its own Python runtime — no pip needed:

Platform Download
Linux x86_64 lilbee-linux-x86_64
macOS arm64 lilbee-macos-arm64
Windows x86_64 lilbee-windows-x86_64.exe

Make executable and run:

chmod +x lilbee-linux-x86_64
./lilbee-linux-x86_64 self-check

Always points at the latest pre-release.

Optional extras

lilbee works out of the box. Extras unlock additional capabilities. Both pip and uv tool install syntax shown:

Extra What it adds
Web crawlingpip install --pre 'lilbee[crawler]' / uv tool install --prerelease=allow 'lilbee[crawler]' Index websites alongside local files. Recursive crawling with Playwright, live progress, cancel, hash-based change detection, SSRF protection, rate limits.
Ollama and frontier modelspip install --pre 'lilbee[litellm]' / uv tool install --prerelease=allow 'lilbee[litellm]' Keep compatibility with existing Ollama setups, or use a popular frontier model (OpenAI, Anthropic, Gemini, etc.) for chat, vision, or embeddings while keeping other roles local. You provide the API key. Chunks sent to the provider leave your machine, and the TUI shows a persistent warning while a cloud model is active.
Concept graphpip install --pre 'lilbee[graph]' / uv tool install --prerelease=allow 'lilbee[graph]' Topic clustering and search boosting. Extracts concepts from your documents and uses their relationships to find results pure text matching misses. Zero extra LLM calls.

Install multiple at once:

pip install --pre 'lilbee[graph,crawler,litellm]'
# or
uv tool install --prerelease=allow 'lilbee[graph,crawler,litellm]'

Combine with --extra-index-url for CUDA:

uv tool install --prerelease=allow 'lilbee[graph,crawler]' \
  --extra-index-url https://tobocop2.github.io/lilbee/cu125/

See the full guide on optional extras for configuration and details.

Upgrading to the latest pre-release

# pip
pip install --upgrade --pre lilbee

# uv (force reinstall)
uv tool install --reinstall --prerelease=allow lilbee

Development (run from source)

git clone https://github.com/tobocop2/lilbee && cd lilbee
uv sync
uv run lilbee

Agent integration

lilbee serves as a retrieval backend for AI coding agents via two entry points: an MCP server (lilbee mcp) and a JSON CLI (lilbee --json ...). MCP exposes search, document lifecycle, crawling, model management, and the full wiki surface as tools; search takes a scope argument so agents can target documents, wiki pages, or both.

See docs/agent-integration.md for MCP client configuration, the full tool reference, and JSON CLI examples.

HTTP Server

lilbee serve starts a REST API that any tool or GUI can hit. It covers search (with SSE streaming), document lifecycle, crawling, model management, configuration, and vault-aware source retrieval for GUI clients. Interactive API docs live at /schema/redoc when the server is running.

See the API reference for the full OpenAPI schema and the usage guide for serve options.

An Obsidian plugin that pairs with lilbee is coming soon. It has full feature parity with the TUI but is aimed at GUI users, especially for workflows where seeing the source matters: index a stack of PDFs, ask a question, and preview the exact page the citation points to without leaving the editor. The plugin runs lilbee serve as a managed sidecar (starting it, stopping it, and talking to it over the REST API), so there's no separate service for you to babysit. Track progress in this PR.

Interactive chat

Running lilbee or lilbee chat enters the TUI. Type / to see the full slash-command list inline, or check the slash-command reference in the usage guide. Slash commands and paths tab-complete; background jobs appear in the Task Center and are cancellable with /cancel.

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.66b445.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.

lilbee-0.6.66b445-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b445-cp313-cp313-win_amd64.whl (19.5 MB view details)

Uploaded CPython 3.13Windows x86-64

lilbee-0.6.66b445-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b445-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lilbee-0.6.66b445-cp312-cp312-win_amd64.whl (19.5 MB view details)

Uploaded CPython 3.12Windows x86-64

lilbee-0.6.66b445-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b445-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lilbee-0.6.66b445-cp311-cp311-win_amd64.whl (19.5 MB view details)

Uploaded CPython 3.11Windows x86-64

lilbee-0.6.66b445-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (46.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lilbee-0.6.66b445-cp311-cp311-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: lilbee-0.6.66b445.tar.gz
  • Upload date:
  • Size: 1.3 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.66b445.tar.gz
Algorithm Hash digest
SHA256 bb9b632ec9e9b2ed41c837a4932c5a8213b96c5cc7a78849fc545c162c71378c
MD5 03748b5aa19cdc1f3501bbcd3fb669ae
BLAKE2b-256 16b6b7b3ae5504b1d4642e968d636242458d702efb39842af957d0d6b759f050

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b445-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f66f2f3f5016bff4d1f3dbcbeaed5b8a1de7a0e4f1fc4946b84a3ef3b02e6e3e
MD5 144e2cbced882f60f36796e0af7e3dd6
BLAKE2b-256 cc5a667136a91931f3d75ff186fb3f528b95404f99fa6a68543efa3210b49c29

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b445-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 19.5 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.66b445-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b7e0dc86d61256a48f54043cb331d624d07c3cdb6fe6494c9fd4caf4a321be5
MD5 8dfb1721f5c983754aa5b3357a050821
BLAKE2b-256 766f73f6898966a7e5005aea3550e926783489d40415c691707bd05ee1b05543

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b445-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4f732102a28cdfdadaf20d187c95f565ace209618e9a4aabab6943e6d145ad6
MD5 f171cf6f68175f808671cb7499fe4f2f
BLAKE2b-256 a693d17aeca4fe00736783a075d5712edb7824435609d85a6b00abaf09350a31

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b445-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c26c96275f7ad6ce79b8a257e6c97850cfc28e513a258da137ab5123e870e74b
MD5 b7daf029fc23c8c5537967f7b16f1d80
BLAKE2b-256 589bfc816e6bcfad5366c0db6c3599762b227d55bd829b20b8213427250ecaa2

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b445-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 19.5 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.66b445-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 421b3b38944c63fc958c7b7f53efa63ef4e6cf1f6f1d4206d34c4c98e7dd2a85
MD5 8c067eb5f263df248c27d2b69fd2cd3a
BLAKE2b-256 6812cac2a6656ac663eb58fce9ffc4f42ecf6fc354bf30488cc79adf96ce1e2b

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b445-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d92c901857766f5c19946ce6c128bffbbb972190a55223c7d4c52f1654fe98
MD5 e091b5b30c0a74d6b51d95e07b532b69
BLAKE2b-256 756eb4bfb2afef2f8fc99fec08e5cdd0f2fa903493c95f2041db0d84f9a0c375

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b445-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b28fbb41aeb0bc07bc363fb014816909f193e2df38be3312b3c81c509fa42185
MD5 d04a62eaf8a4f71fdcdc1f2697a69f97
BLAKE2b-256 0d18a7d05ba37798d36169cf960e5b15eaf4ff49be414de0f97b63f0265d4c0e

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lilbee-0.6.66b445-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 19.5 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.66b445-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e330fe84a73fa20989355403d1123a2d3d6ef7017c5874aa182cf6675bfce12
MD5 48a039234a95dead0f6283fe76eef2c0
BLAKE2b-256 a199e4226c08bc137a9bd2c5aa69f066491a59475e46e216e1b6d87f08a311dc

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b445-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e08ee703fed9eee79a194f8a2d474f129d8264d7348b28bb20e08c6836f2492
MD5 a14c2e9b75ce702a9bfeb0c4e6e11bcd
BLAKE2b-256 582019dade96b7270295806b6e4c4bf61610cafa00b19ca42e5535dd69b837f8

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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.66b445-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lilbee-0.6.66b445-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe346ba299ca0f1e9395f0c87a95d15854f2c88349ab7451b4c8acf4fa4eb590
MD5 13db677fa7a800e6474591f4d3e1dbde
BLAKE2b-256 4407a5ccf9db63fcf867ff510d9d1389f6389f9c2bc80e279bb76d54a44d5582

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.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