Metadata-Version: 2.4
Name: bzl
Version: 2.2.0
Summary: Terminal UI for browsing and executing Bazel genrule targets
Requires-Python: >=3.9
Requires-Dist: pyfiglet
Requires-Dist: rapidfuzz>=3.0.0
Requires-Dist: textual>=0.50.0
Description-Content-Type: text/markdown

[![PyPI version](https://img.shields.io/pypi/v/bzl.svg)](https://pypi.org/project/bzl/)
# bzl

> Terminal UI for browsing and executing Bazel targets.

![demo-2](https://raw.githubusercontent.com/iamvinit/bzl/refs/heads/main/images/demo-2.png)

## Install

Install the latest release directly from PyPI:

```bash
pip install bzl
```

Or using pipx (recommended):
```bash
pipx install bzl
```

## Usage

```bash
# local — fuzzy-browse all genrules in the current Bazel repo
bzl

# narrow the query scope (faster in large monorepos)
bzl --scope //modules/...
# or use the short form
bzl -S //modules/...

# run on a remote host over SSH (query + build both happen remotely)
bzl --ssh user@build-host
bzl -s user@build-host -d /remote/path/to/repo
```

## Configuration

You can create a `.bzlrc` file in your repository root or home directory (`~/.bzlrc`) to set default options.

Example `.bzlrc`:
```ini
[defaults]
ssh = user@build-server
ssh_dir = /home/user/my-repo
scope = //modules/...
cache_ttl = 20160
kinds = genrule,test_rule
```

## Key bindings

| Key | Action |
|-----|--------|
| Type | Filter the list |
| `↑` / `↓` | Navigate |
| `Enter` | Select module / execute target |
| `Ctrl+V` | Toggle verb between **build**, **run**, and **test** |
| `Ctrl+E` | Execute **bazel clean** immediately |
| `Ctrl+X` | Execute **bazel clean --expunge** immediately |
| `Ctrl+F` | Refresh Bazel query |
| `Ctrl+K` | Select target rules (`genrule`, `test_rule`, etc.) |
| `Esc` | Go back (or Quit if on main screen) |

## Note

NB: The Bazel CLI is required to use `bzl`. Install the Bazel CLI (or `bazelisk`) following the official instructions: https://bazel.build. 

