AniWorld-Downloader is a command-line tool for downloading and streaming movies and series.
Project description
AniWorld Downloader v4
AniWorld Downloader is a cross-platform tool for streaming and downloading anime from aniworld.to, as well as series from s.to. It runs on Windows, macOS, and Linux, providing a seamless experience for offline viewing or instant playback.
TL;DR - Quick Start
# Install stable release
pip install -U aniworld
# Or install latest GitHub commit
pip install --upgrade git+https://github.com/phoenixthrush/AniWorld-Downloader.git@models#egg=aniworld
# Launch AniWorld Downloader
aniworld
Tip: Use the stable release for general use. The GitHub version includes the latest features and fixes but may be less stable.
Still in Development
This project is actively being improved. Current work in progress includes:
- Split Web UI SSO dependencies into separate
extrassection - Implement
keep-watchingargument for continuous playback - Review and optimize dependency manager on Windows
- Fix Nuitka build crash: use Python 3.12 (non-MSVC builds unsupported on newer versions)
- Remove empty lines below actions when running
docker run -it
Features
- Downloading – Grab full series, individual seasons, or single episodes for offline viewing
- Streaming – Watch episodes instantly using mpv, IINA, or Syncplay
- Auto-Next Playback – Seamlessly move to the next episode without interruption
- Multiple Providers – Stream from various sources on aniworld.to and s.to
- Language Preferences – Switch between German Dub, English Sub, or German Sub
- Muxing – Automatically combine video and audio streams into a single file
- AniSkip Integration – Skip intros and outros on AniWorld for a smoother experience
- Group Watching – Sync anime and series sessions with friends via Syncplay
- Web Interface – Browse, download, and manage your queue with a modern web UI
- Docker Ready – Deploy easily using Docker or Docker Compose
Supported Providers
| Provider | Status | Last Tested |
|---|---|---|
| VOE | ✅ Working | 02/26 |
| Vidoza | ✅ Working | 02/26 |
| Filemoon | ❌ Broken | 02/26 |
| Vidmoly | ❌ Broken | 02/26 |
| Doodstream | ❌ Broken | 02/26 |
| Hanime | ⏳ Not Implemented | — |
| LoadX | ⏳ Not Implemented | — |
| Luluvdo | ⏳ Not Implemented | — |
| Streamtape | ⏳ Not Implemented | — |
Currently Prioritized Providers
- AniWorld – VOE, Filemoon, Vidmoly
- SerienStream – VOE, Vidoza
Docker
Build the AniWorld Downloader Docker image:
docker build -t aniworld .
Running the Container
- macOS / Linux (bash/zsh):
docker run -it --rm \
-v "${PWD}/Downloads:/app/Downloads" \
aniworld python -m aniworld
- Windows (PowerShell):
docker run -it --rm `
-v "${PWD}\Downloads:/app/Downloads" `
aniworld python -m aniworld
- Windows (CMD):
docker run -it --rm ^
-v "%cd%\Downloads:/app/Downloads" ^
aniworld python -m aniworld
Note: Mount your local
Downloadsfolder to/app/Downloadsin the container to save downloaded episodes. You can adjust the host path as needed.
Docker Compose (with Web UI)
Start AniWorld Downloader using Docker Compose:
docker-compose up -d --build
This command will:
- Build the Docker image if it hasn’t been built yet
- Start the container in detached mode (
-d) - Enable the Web UI for easier interaction
- Automatically restart the container unless stopped manually (
restart: unless-stopped)
To stop the container:
docker-compose down
Tip: Ensure your
docker-compose.ymlcorrectly configures volumes and ports if you want to persist downloads or access the Web UI externally.
Documentation
For full user guides, tutorials, and troubleshooting, visit the official documentation.
Contributing
Contributions to AniWorld Downloader are highly appreciated! You can help improve the project in several ways:
- Report Bugs – Identify and report issues to improve functionality
- Suggest Features – Share ideas to expand the tool's capabilities
- Submit Pull Requests – Contribute code to fix bugs or add new features
- Improve Documentation – Help enhance user guides, tutorials, and technical documentation
Before submitting contributions, please check the repository for existing issues or feature requests to avoid duplicates.
Contributors
Dependencies
AniWorld Downloader requires several Python packages for HTTP requests, UI, media processing, web features, and environment management.
Core dependencies
- niquests – Simplified HTTP requests
- npyscreen – For building interactive text-based UIs (TUI)
- ffmpeg-python – Python bindings for FFmpeg (requires FFmpeg installed on your system)
- python-dotenv – Loads environment variables from a .env file
- rich – Colored and formatted terminal output (used by
aniworld --examples) - fake-useragent – Generates random user agents (optional, may be replaced in the future)
Web / server dependencies
- requests – Standard HTTP library for Python
- flask – Lightweight web framework
- flask-wtf – Form handling and CSRF protection for Flask
- authlib – OAuth and authentication utilities
- waitress – Production-ready WSGI server
Platform-specific dependencies
- windows-curses – Enables curses support required by npyscreen on Windows (installed automatically on Windows; version pinned for Python < 3.14)
All dependencies are installed automatically when AniWorld Downloader is installed via pip.
Credits
AniWorld Downloader builds upon the work of several outstanding open-source projects:
- mpv – A versatile media player used for seamless video streaming
- IINA – Modern macOS media player built on mpv, offering a sleek interface and advanced playback features
- Syncplay – Enables synchronized playback sessions with friends
- Anime4K – Real-time upscaler for enhancing anime video quality
- Aniskip – Provides opening and ending skip times for the Aniskip extension
Support
If you need help with AniWorld Downloader, you have several options:
- Submit an issue on the GitHub Issues page – preferred for installation problems, bug reports, or feature requests, as it helps others benefit from shared solutions
- Contact directly via email at contact@phoenixthrush.com or on our Discord server. Join here
While email support is available, opening a GitHub issue is encouraged whenever possible.
If you find AniWorld Downloader useful, please star the repository on GitHub. Your support is greatly appreciated and motivates continued development.
Thank you for using AniWorld Downloader!
Legal Disclaimer
AniWorld Downloader is a client-side tool that enables access to content hosted on third-party websites. It does not host, upload, store, or distribute any media itself.
This software is not intended to promote piracy or copyright infringement. You are solely responsible for how you use AniWorld Downloader and for ensuring that your use complies with applicable laws and the terms of service of the websites you access.
The developer provides this project "as is" and is not responsible for:
- Third-party content
- External links
- The availability, accuracy, legality, or reliability of any third-party service
If you have concerns about specific content, contact the relevant website owner, administrator, or hosting provider.
Star History
License
This project is licensed under the MIT License. For full terms and conditions, please see the LICENSE file included with this project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aniworld-4.1.0.tar.gz.
File metadata
- Download URL: aniworld-4.1.0.tar.gz
- Upload date:
- Size: 122.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dc24259fd85809075455c4fb6aab31a5cff2e5201d3725ae1d3cf40a01a8a0f
|
|
| MD5 |
41d7f3992d96609671365ed4029f03e2
|
|
| BLAKE2b-256 |
c5bfb95288884ba623c2985133c00835ba0545a45ade133e175dc92a7ccb3357
|
Provenance
The following attestation bundles were made for aniworld-4.1.0.tar.gz:
Publisher:
publish.yaml on phoenixthrush/AniWorld-Downloader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aniworld-4.1.0.tar.gz -
Subject digest:
5dc24259fd85809075455c4fb6aab31a5cff2e5201d3725ae1d3cf40a01a8a0f - Sigstore transparency entry: 954836051
- Sigstore integration time:
-
Permalink:
phoenixthrush/AniWorld-Downloader@abab95bf0ec52c56924088051b86125335cf0efe -
Branch / Tag:
refs/tags/v.4.1.0 - Owner: https://github.com/phoenixthrush
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@abab95bf0ec52c56924088051b86125335cf0efe -
Trigger Event:
release
-
Statement type:
File details
Details for the file aniworld-4.1.0-py3-none-any.whl.
File metadata
- Download URL: aniworld-4.1.0-py3-none-any.whl
- Upload date:
- Size: 137.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89130a78236df6e34d14f9ac6e0e77f30219980b50dc297fec0fd7f3d5ae1c9c
|
|
| MD5 |
eaa0c5496d26f03827982783bee4c642
|
|
| BLAKE2b-256 |
db57ec87f93cb31703ee5ef0adf9ae4bef02ae5a8812c42a5540263558285821
|
Provenance
The following attestation bundles were made for aniworld-4.1.0-py3-none-any.whl:
Publisher:
publish.yaml on phoenixthrush/AniWorld-Downloader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aniworld-4.1.0-py3-none-any.whl -
Subject digest:
89130a78236df6e34d14f9ac6e0e77f30219980b50dc297fec0fd7f3d5ae1c9c - Sigstore transparency entry: 954836054
- Sigstore integration time:
-
Permalink:
phoenixthrush/AniWorld-Downloader@abab95bf0ec52c56924088051b86125335cf0efe -
Branch / Tag:
refs/tags/v.4.1.0 - Owner: https://github.com/phoenixthrush
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@abab95bf0ec52c56924088051b86125335cf0efe -
Trigger Event:
release
-
Statement type: