Skip to main content

A browser anime site experience from the terminal

Project description

[!IMPORTANT] looking for a new project name

if you have any that is not already being used by someone on pypi please share on discord

and let me warn yah am not good at naming things so help before disaster strikes again lol

i dont want it to end up like viu where i added cli lol since viu was taken

Viu

Your browser anime experience, from the terminal.

PyPI - Version PyPI - Downloads GitHub Actions Workflow Status Discord GitHub Issues PyPI - License

Discord Server Invite

Core Features

  • 📺 Interactive TUI: Browse, search, and manage your AniList library in a rich terminal interface powered by fzf, rofi, or a built-in selector.
  • Powerful Search: Filter the entire AniList database with over 20 different criteria, including genres, tags, year, status, and score.
  • 💾 Local Registry: Maintain a fast, local database of your anime for offline access, detailed stats, and robust data management.
  • ⚙️ Background Downloader: Queue episodes for download and let a persistent background worker handle the rest.
  • 📜 Scriptable CLI: Automate streaming and downloading with powerful, non-interactive commands perfect for scripting.
  • 🔧 Highly Customizable: Tailor every aspect—from UI colors and providers to playback behavior—via a simple, well-documented configuration file.
  • 🔌 Extensible Architecture: Easily add new providers, media players, and UI selectors to fit your workflow.

Installation

Viu runs on any platform with Python 3.10+, including Windows, macOS, Linux, and Android (via Termux).

Prerequisites

For the best experience, please install these external tools:

  • Required for Streaming:
    • mpv - The primary and recommended media player.
  • Recommended for UI & Previews:
    • fzf - For the best fuzzy-finder interface.
    • chafa or kitty's icat - For image previews in the terminal.
  • Recommended for Downloads & Advanced Features:
    • ffmpeg - Required for downloading HLS streams and merging subtitles.
    • webtorrent-cli - For streaming torrents directly.

Recommended Installation (uv)

The best way to install Viu is with uv, a lightning-fast Python package manager.

# Install with all optional features for the full experience
uv tool install "viu-media[standard]"

# Or, pick and choose the extras you need:
uv tool install viu-media  # Core functionality only
uv tool install "viu-media[download]"  # For advanced downloading with yt-dlp
uv tool install "viu-media[discord]"   # For Discord Rich Presence
uv tool install "viu-media[notifications]" # For desktop notifications

Other Installation Methods

Platform-Specific and Alternative Installers

Nix / NixOS

nix profile install github:Benexl/viu

Arch Linux (AUR)

Use an AUR helper like yay or paru.

# Stable version (recommended)
yay -S viu

# Git version (latest commit)
yay -S viu-git

Using pipx (for isolated environments)

pipx install "viu-media[standard]"

Using pip

pip install "viu-media[standard]"
Building from Source

Requires Git, Python 3.10+, and uv.

git clone https://github.com/Benexl/Viu.git --depth 1
cd Viu
uv tool install .
viu --version

[!TIP] Enable shell completions for a much better experience by running viu completions and following the on-screen instructions for your shell.

Getting Started: Quick Start

Get up and running in three simple steps:

  1. Authenticate with AniList:

    viu anilist auth
    

    This will open your browser. Authorize the app and paste the obtained token back into the terminal.

  2. Launch the Interactive TUI:

    viu anilist
    
  3. Browse & Play: Use your arrow keys to navigate the menus, select an anime, and choose an episode to stream instantly.

Usage Guide

The Interactive TUI (viu anilist)

This is the main, user-friendly way to use Viu. It provides a rich terminal experience where you can:

  • Browse trending, popular, and seasonal anime.
  • Manage your personal lists (Watching, Completed, Paused, etc.).
  • Search for any anime in the AniList database.
  • View detailed information, characters, recommendations, reviews, and airing schedules.
  • Stream or download episodes directly from the menus.

Powerful Searching (viu anilist search)

Filter the entire AniList database with powerful command-line flags.

# Search for anime from 2024, sorted by popularity, that is releasing and not on your list
viu anilist search -y 2024 -s POPULARITY_DESC --status RELEASING --not-on-list

# Find the most popular movies with the "Fantasy" genre
viu anilist search -g Fantasy -f MOVIE -s POPULARITY_DESC

# Dump search results as JSON instead of launching the TUI
viu anilist search -t "Demon Slayer" --dump-json

Background Downloads (viu queue & worker)

Viu includes a robust background downloading system.

  1. Add episodes to the queue:
    # Add episodes 1-12 of Jujutsu Kaisen to the download queue
    viu queue add -t "Jujutsu Kaisen" -r "0:12"
    
  2. Start the worker process:
    # Run the worker in the foreground (press Ctrl+C to stop)
    viu worker
    
    # Or run it as a background process
    viu worker &
    ```The worker will now process the queue, download your episodes, and check for notifications.
    

Scriptable Commands (download & search)

These commands are designed for automation and quick, non-interactive tasks.

download Examples

# Download the latest 5 episodes of One Piece
viu download -t "One Piece" -r "-5"

# Download episodes 1 to 24, merge subtitles, and clean up original files
viu download -t "Jujutsu Kaisen" -r "0:24" --merge --clean

search (Binging) Examples

# Start binging an anime from the first episode
viu search -t "Attack on Titan" -r ":"

# Watch the latest episode directly
viu search -t "My Hero Academia" -r "-1"

Local Data Management (viu registry)

Viu maintains a local database of your anime for offline access and enhanced performance.

  • registry sync: Synchronize your local data with your remote AniList account.
  • registry stats: Show detailed statistics about your viewing habits.
  • registry backup: Create a compressed backup of your entire registry.
  • registry restore: Restore your data from a backup file.
  • registry export/import: Export/import your data to JSON/CSV for use in other applications.
  • registry clean: Clean up orphaned or invalid entries from your local database.

Configuration

Viu is highly customizable. A default configuration file with detailed comments is created on the first run.

  • Find your config file: viu config --path
  • Edit in your default editor: viu config
  • Use the interactive wizard: viu config --interactive

Most settings in the config file can be temporarily overridden with command-line flags (e.g., viu --provider animepahe anilist).

Default Configuration (`config.ini`) Explained
# [general] Section: Controls overall application behavior.
[general]
provider = allanime          ; The default anime provider (allanime, animepahe).
selector = fzf               ; The interactive UI tool (fzf, rofi, default).
preview = full               ; Preview type in selectors (full, text, image, none).
image_renderer = icat        ; Tool for terminal image previews (icat, chafa).
icons = True                 ; Display emoji icons in the UI.
auto_select_anime_result = True ; Automatically select the best search match.
...

# [stream] Section: Controls playback and streaming.
[stream]
player = mpv                 ; The media player to use (mpv, vlc).
quality = 1080               ; Preferred stream quality (1080, 720, 480, 360).
translation_type = sub       ; Preferred audio/subtitle type (sub, dub).
auto_next = False            ; Automatically play the next episode.
continue_from_watch_history = True ; Resume playback from where you left off.
use_ipc = True               ; Enable in-player controls via MPV's IPC.
...

# [downloads] Section: Controls the downloader.
[downloads]
downloader = auto            ; Downloader to use (auto, default, yt-dlp).
downloads_dir = ...          ; Directory to save downloaded anime.
max_concurrent_downloads = 3 ; Number of parallel downloads in the worker.
merge_subtitles = True       ; Automatically merge subtitles into the video file.
cleanup_after_merge = True   ; Delete original files after merging.
...

# [worker] Section: Controls the background worker process.
[worker]
enabled = True
notification_check_interval = 15 ; How often to check for new episodes (minutes).
download_check_interval = 5      ; How often to process the download queue (minutes).
...

Advanced Features

MPV IPC Integration

When use_ipc = True is set in your config, Viu provides powerful in-player controls without needing to close MPV.

Key Bindings:

  • Shift+N: Play the next episode.
  • Shift+P: Play the previous episode.
  • Shift+R: Reload the current episode.
  • Shift+A: Toggle auto-play for the next episode.
  • Shift+T: Toggle between dub and sub.

Script Messages (For MPV Console):

  • script-message select-episode <number>: Jump to a specific episode.
  • script-message select-server <name>: Switch to a different streaming server.

Running as a Service (Linux/systemd)

You can run the background worker as a systemd service for persistence.

  1. Create a service file at ~/.config/systemd/user/viu-worker.service:

    [Unit]
    Description=Viu Background Worker
    After=network-online.target
    
    [Service]
    Type=simple
    ExecStart=/path/to/your/viu worker --log
    Restart=always
    RestartSec=30
    
    [Install]
    WantedBy=default.target
    

    Replace /path/to/your/viu with the output of which viu.

  2. Enable and start the service:

    systemctl --user daemon-reload
    systemctl --user enable --now viu-worker.service
    

Contributing

Contributions are welcome! Whether it's reporting a bug, proposing a feature, or writing code, your help is appreciated. Please read our Contributing Guidelines to get started.

Disclaimer

[!IMPORTANT] This project scrapes public-facing websites. The developer(s) of this application have no affiliation with these content providers. This application hosts zero content and is intended for educational and personal use only. Use at your own risk.

Read the Full Disclaimer

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

viu_media-3.2.7.tar.gz (669.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

viu_media-3.2.7-py3-none-any.whl (598.6 kB view details)

Uploaded Python 3

File details

Details for the file viu_media-3.2.7.tar.gz.

File metadata

  • Download URL: viu_media-3.2.7.tar.gz
  • Upload date:
  • Size: 669.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for viu_media-3.2.7.tar.gz
Algorithm Hash digest
SHA256 91ff7af6dc2ffe3a0e1bd652af91ed76a0988cc8784d45e44c4bcf6c56c6f365
MD5 3b30078a1c5e9d5db5b86a1db0b072a0
BLAKE2b-256 b25ba62a9fbf2e16a3261c8e83bbadfd33e51bec3c358523a3d87120ef21128e

See more details on using hashes here.

Provenance

The following attestation bundles were made for viu_media-3.2.7.tar.gz:

Publisher: publish.yml on Benexl/viu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viu_media-3.2.7-py3-none-any.whl.

File metadata

  • Download URL: viu_media-3.2.7-py3-none-any.whl
  • Upload date:
  • Size: 598.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for viu_media-3.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 292aca912af98a6b8de3e05d439a6d6df9d74348f82e5732d31d336ae09ceeaf
MD5 bcffd5702e3f5f1b44524865881f6999
BLAKE2b-256 6975d323de407123ca7d9240ef08cb2e3c1fe1c6c50f24107b7c0436f67d382b

See more details on using hashes here.

Provenance

The following attestation bundles were made for viu_media-3.2.7-py3-none-any.whl:

Publisher: publish.yml on Benexl/viu

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