Metadata-Version: 2.4
Name: bejw
Version: 0.3.1
Summary: A capped reading list for links that shimmer
Author: menisadi
License: MIT License
        
        Copyright (c) 2026 menisadi
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/menisadi/bejw
Project-URL: Repository, https://github.com/menisadi/bejw
Project-URL: Changelog, https://github.com/menisadi/bejw/blob/main/CHANGELOG.md
Keywords: cli,reading-list,links,productivity
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=14.3.2
Requires-Dist: typer>=0.21.1
Dynamic: license-file

# bejw

A small CLI to keep a capped reading list of links in a local JSON file.

## Install

```bash
uv sync
```

## Usage

```bash
python main.py --help
python main.py init --capacity 10
python main.py add "https://example.com" "Example"
python main.py list
python main.py list --include-read
python main.py list --format tsv --show-ids | fzf
python main.py list --format jsonl | jq .
python main.py mark-read <number>
python main.py remove <number>
python main.py capacity 5
python main.py clear
```

`list` output includes a 1-based number column and a `status` field (`unread`/`read`) so you can distinguish entry state across output formats.
By default, links marked as read are hidden from `list`; use `--include-read` to display them.

## Storage

By default, data is stored in `~/.bejw/links.json`.
