ani-cli web
Small local web UI for a system-wide ani-cli install.
Current version: 0.37.0
Project Layout
ani-cli-web/
app.py Main entrypoint and runtime wiring.
app_support.py Shared config, state, and helper utilities.
Dockerfile Container image build.
docker-compose.yaml Example Compose service.
queue_jobs.py Download queue and watchlist refresh workers.
watchlist_identity.py Download-to-watchlist identity matching.
title_matching.py Shared title normalization and matching.
http_handler.py HTTP routing and access control.
web_templates.py Shared page aggregation.
search_page.py Search page template.
queue_page.py Queue page template.
config_page.py Config page template.
watchlist_page.py Watchlist page template.
docker-entrypoint.sh Container startup wrapper.
ani-cli-web Launcher script.
test_app.py Regression tests.
VERSION Project version.
CHANGELOG.md Change history.
README.md Project documentation.
Quick Start
Run the app:
./ani-cli-web
Run with debug logging:
./ani-cli-web --debug
Open:
http://127.0.0.1:8421/
Default bind address is 127.0.0.1:8421.
Docker
The image installs ani-cli system-wide, downloads the latest upstream yt-dlp release binary from GitHub, and clones ani-cli-web into /app during build.
Default build args:
ANI_CLI=https://github.com/pystardust/ani-cli.git
ANI_CLI_BRANCH=master
ANI_CLI_WEB=https://gitea.coreplay.eu/Dymas/ani-cli-web.git
Build:
docker build -t ani-cli-web .
Build with a custom ani-cli branch:
docker build \
--build-arg ANI_CLI_BRANCH=my-branch \
--build-arg ANI_CLI=https://github.com/pystardust/ani-cli.git \
--build-arg ANI_CLI_WEB=https://gitea.coreplay.eu/Dymas/ani-cli-web.git \
-t ani-cli-web .
Run:
docker run --rm \
-p 8421:8421 \
-e UPDATE_ON_START=true \
-e USER_UID="$(id -u)" \
-e USER_GID="$(id -g)" \
-v "$(pwd)/downloads:/downloads" \
-v "$(pwd)/.ani-cli-web:/app/.ani-cli-web" \
ani-cli-web
Compose:
docker compose up --build -d
Use host ownership for mounted downloads:
USER_UID="$(id -u)" USER_GID="$(id -g)" docker compose up --build -d
Container notes:
ani-cliis installed at/usr/local/bin/ani-cli.yt-dlpis installed at/usr/local/bin/yt-dlpfrom the latest GitHub release during build.ani-cli-webruns from/app.- Downloads go to
/downloads. - App state lives in
/app/.ani-cli-web. - The container binds
0.0.0.0:8421. UPDATE_ON_START=truerunssudo ani-cli --updatebefore startup.USER_UIDandUSER_GIDkeep mounted files from being owned byroot.
What It Does
- Search AllAnime in
subordub. - Queue downloads with editable folder, quality, season, and episode range.
- Save defaults on
/config. - Track shows on
/watchlist. - Refresh watchlist episode counts in the background.
- Schedule periodic watchlist refresh jobs.
- Send Discord webhook notifications for refresh discoveries and failures.
- Send Discord webhook notifications for completed downloads.
- Cache watchlist thumbnails locally.
- Sync successful downloads back into the watchlist.
- Keep queue and watchlist data in SQLite under
.ani-cli-web/.
Pages
Search Page
Path: /
Use it to:
- Search for an anime.
- Load episodes.
- Adjust folder, quality, season, and episode range.
- Add the show to the queue or watchlist.
Highlights:
- Search stays focused on finding shows, loading episodes, and queueing new downloads.
- Added-to-queue notices now point to the dedicated Queue page for progress tracking.
- Search request guards still avoid stale responses overwriting newer results.
- The shared sidebar menu now shows one navigation entry per line for cleaner balance across all pages.
Queue Page
Path: /queue
Use it to:
- Monitor active, pending, failed, and finished download jobs.
- Inspect recent per-job logs with newest lines first.
- Retry failed jobs.
- Remove finished jobs.
- Cancel running or pending jobs.
Highlights:
- Automatic queue polling every 2.5 seconds.
- Dedicated queue pagination and cleanup controls.
- Search and queue workflows are now separated into distinct pages.
- Each queue job card can be collapsed, and finished jobs start collapsed by default to keep the page compact.
Config Page
Path: /config
Use it to set:
- Default download folder.
- Default
subordubmode. - Default quality.
- Scheduled watchlist refresh enable or disable.
- Scheduled refresh period in minutes.
- Delay between shows during
Refresh All. - Discord webhook URL.
- Discord notification events plus a test action.
Saved settings are written to .ani-cli-web/config.json.
Discord notification events:
- Download completed.
- Refresh finished and found new episodes.
- Refresh failed or finished with per-show refresh errors.
- Refresh interrupted by restart or shutdown.
- Unexpected runtime errors.
Watchlist
Path: /watchlist
Categories:
WatchingPlannedFinishedDropped
Ways to add shows:
- From the Search page.
- Manually on
/watchlist.
Main behavior:
Refreshupdates one show.Refresh Allruns in the background.Download allprompts forsuborduband queues every currently available episode directly.- Clicking the title opens the source page.
Removedeletes the entry and cached poster.- Each card has an inline category selector.
- Summary cards show total tracked shows plus
subanddubcounts. - Pagination shows 30 cards per page.
Status behavior:
SubandDubpills turn green when that track looks complete.- Cards with both
subanddubfully ready get a thin green border. - Finished cards show a small check badge.
- Green check means downloaded through the app.
- Gray check means finished manually.
Download sync:
- Existing watchlist entries move to
Finishedwhen a download succeeds. - Missing entries are added to
Finished. - If ani-cli resolves a different
show_id, the app can reconcile a unique title match instead of creating a duplicate finished row.
Thumbnail behavior:
- Thumbnails are served from the local
/api/watchlist/thumb/...route. - Cached thumbnails are reused.
Title behavior:
- Watchlist refreshes also try to pull alternative English and synonym titles from the AllManga show page.
- Up to three alternate names are shown as a muted secondary line under the main watchlist title.
- Missing covers are warmed in small batches.
- Failed lookups back off before retrying.
- You can force
Reloador useUploadwhen no thumbnail exists.
Refresh behavior:
- Per-show refreshes are queued in the background.
- Queued refresh state survives restarts.
- Duplicate refresh queueing is avoided.
- Scheduled refresh runs log start, stop, success, and failure to stdout.
Refresh Allworks one show at a time with a configurable delay.- When a Discord webhook is configured, new-episode refresh results include one notification card per anime with sub and dub counts and a cached thumbnail attachment when available.
Access Guard
By default the app only serves loopback clients such as 127.0.0.1 and ::1.
To allow LAN or remote access:
ANI_CLI_WEB_ALLOW_REMOTE=1
ANI_CLI_WEB_REMOTE_TOKEN=choose-a-long-random-token
Non-local clients must send one of:
Authorization: Bearer <token>X-AniCli-Web-Token: <token>
Browser bootstrap also works:
http://YOUR-HOST:8421/?token=your-token-here
For normal browser visits, the app now shows a sign-in page automatically when the token cookie is missing.
The app stores the token in an HTTP-only cookie and redirects to the clean URL. The cookie is persistent, so you usually only need to sign in once per browser.
Download Queue
Path: /queue
The queue is stored in SQLite, shown 10 jobs at a time, and managed from its dedicated page.
Available actions:
RetryCancelRemoveRetry failedRemove finished
Downloads are staged first, then moved into a media-friendly layout:
ANI_CLI_DOWNLOAD_DIR/anime_name/Season 01/anime_name - S01E01.mp4
Runtime State
All local state is stored under:
ani-cli-web/.ani-cli-web/
Main contents:
config.jsonstate.sqlite3thumbnails/- AniDB title cache data
- staging files for active downloads
Legacy state from older locations is migrated on startup.
Configuration
Environment variables:
ANI_CLI_BIN: path or command name forani-cliANI_CLI_DOWNLOAD_DIR: initial default download folderANI_CLI_MODE: initial mode,subordubANI_CLI_QUALITY: initial quality such asbest,1080, or720ANI_CLI_WEB_HOST: server host, default127.0.0.1ANI_CLI_WEB_PORT: server port, default8421ANI_CLI_WEB_ALLOW_REMOTE: allow non-loopback clientsANI_CLI_WEB_REMOTE_TOKEN: shared secret for remote accessANI_CLI_WEB_DEBUG: enable debug loggingANI_CLI_WEB_STATE_ROOT: override the project-local state directoryUPDATE_ON_START: runsudo ani-cli --updatein the container before startupUSER_UIDandUSER_GID: run the container as a specific host user/group
Saved config fields include:
discord_webhook_urldiscord_webhook_eventswatchlist_auto_refresh_enabledwatchlist_auto_refresh_minuteswatchlist_refresh_delay_seconds
Testing
Run the regression suite with:
python3 -m unittest test_app.py
Notes
- Runtime boot is lazy. Importing
app.pydoes not immediately start worker threads. - Queue and watchlist data share the same SQLite database:
.ani-cli-web/state.sqlite3. - Runtime folders such as
.ani-cli-web/anddownloads/are ignored by git. - The Docker image clones both upstream repositories during build.