Metadata-Version: 2.4
Name: aniterm
Version: 1.0.1
Summary: Stream anime from your terminal
License: MIT
Project-URL: Homepage, https://github.com/amalxloop/aniterm
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Aniterm

Stream anime from your terminal.

## Requirements

- **mpv** — video player
- **yt-dlp** — streaming
- **curl_cffi** — `pip install curl_cffi`
- **python3**

## Install

```bash
pip install aniterm           # from PyPI
pip install curl_cffi         # needed by yt-dlp for Cloudflare bypass
```

Or run directly from the repo:

```bash
git clone https://github.com/amalxloop/aniterm.git
pip install curl_cffi
./aniterm/aniterm
```

## Usage

```
aniterm search <query>           Search anime
aniterm <id>                     Show info + episode list
aniterm <id> <ep>                Play episode (subbed by default)
aniterm <id> <ep> -dub           Play dubbed episode
aniterm -i <query>               Interactive mode
aniterm <id> -i                  Pick episode interactively
```

### Examples

```bash
aniterm search "cowboy bebop"
aniterm 1                        # list episodes
aniterm 1 1                      # play episode 1
aniterm 21 1000                  # play One Piece episode 1000
aniterm -i "attack on titan"     # interactive
```

## Notes

- Episode counts for ongoing anime (e.g. One Piece) are derived from AniList's `nextAiringEpisode` data
