Metadata-Version: 2.4
Name: aniworld
Version: 4.0.0
Summary: AniWorld-Downloader is a command-line tool for downloading and streaming movies and series.
Author-email: Phoenixthrush UwU <contact@phoenixthrush.com>
Maintainer-email: Phoenixthrush UwU <contact@phoenixthrush.com>
License-Expression: MIT
Project-URL: homepage, https://github.com/phoenixthrush/AniWorld-Downloader
Project-URL: changelog, https://github.com/phoenixthrush/AniWorld-Downloader/commits/models
Project-URL: documentation, https://readthedocs.org
Project-URL: bugs, https://github.com/phoenixthrush/AniWorld-Downloader/issues
Project-URL: issues, https://github.com/phoenixthrush/AniWorld-Downloader/issues
Project-URL: tracker, https://github.com/phoenixthrush/AniWorld-Downloader/issues
Project-URL: download, https://pypi.org/project/aniworld/#files
Project-URL: sponsor, https://github.com/sponsors/phoenixthrush
Project-URL: funding, https://github.com/sponsors/phoenixthrush
Project-URL: donate, https://github.com/sponsors/phoenixthrush
Project-URL: discord, https://discord.com/invite/BfDvrKd8V5
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: niquests
Requires-Dist: npyscreen
Requires-Dist: ffmpeg-python
Requires-Dist: python-dotenv
Requires-Dist: rich
Requires-Dist: fake-useragent
Requires-Dist: flask
Requires-Dist: flask-wtf
Requires-Dist: authlib
Requires-Dist: requests
Requires-Dist: waitress
Requires-Dist: windows-curses<3.14; sys_platform == "win32" and python_version < "3.14"
Dynamic: license-file

<a id="readme-top"></a>

# 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.

![GitHub Release](https://img.shields.io/github/v/release/phoenixthrush/AniWorld-Downloader)
[![PyPI Downloads](https://static.pepy.tech/badge/aniworld)](https://pepy.tech/projects/aniworld)
![PyPI - Downloads](https://img.shields.io/pypi/dm/aniworld)
![GitHub License](https://img.shields.io/github/license/phoenixthrush/AniWorld-Downloader)
![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/phoenixthrush/AniWorld-Downloader)
![GitHub Repo stars](https://img.shields.io/github/stars/phoenixthrush/AniWorld-Downloader)
![GitHub forks](https://img.shields.io/github/forks/phoenixthrush/AniWorld-Downloader)

![AniWorld Downloader - Demo](https://github.com/phoenixthrush/AniWorld-Downloader/blob/models/.github/assets/demo.png?raw=true)

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## TL;DR - Quick Start

```bash
# Installation - Stable Release (v.3.9.0)
pip install aniworld==3.9.0

# Installation - Latest Development Version (v.4.0.0)
# Menu will only work on Python 3.9-3.13 due to windows-curses dependency
pip install --upgrade git+https://github.com/phoenixthrush/AniWorld-Downloader.git@models#egg=aniworld

# Usage
aniworld
```

> **Note:**
> The above command installs the latest development version. For the old release, run `pip install -U aniworld` instead.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Still in Development from v3

- [ ] Embed webui in Nuitka build
- [ ] Split webui sso dependencies into separate extra section
- [ ] Implement argument: keep-watching
- [ ] Look at dependency manager
- [ ] README -> add sections from v3
- [ ] Nuitka -> fix build crash: use 3.12 instead...  non-MSVC is not currently supported on newer
- [ ] Remove empty lines below action when running on docker run -it

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Features

- **Downloading** – Grab full series, seasons, or individual episodes for offline viewing
- **Streaming** – Watch episodes immediately 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** – Automatically 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 anime and series queue with a modern web UI
- **Docker Ready** – Easily deploy using Docker or Docker Compose

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## 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**: VOE, Filemoon, Vidmoly (aniworld) and VOE, Vidoza (serienstream)

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Docker

```bash
docker build -t aniworld .
```

- **macOS/Linux (bash/zsh):**

  ```bash
  docker run -it --rm \
    -v "${PWD}/Downloads:/app/Downloads" \
    aniworld python -m aniworld
  ```

- **Windows (PowerShell):**

  ```powershell
  docker run -it --rm `
    -v "${PWD}\Downloads:/app/Downloads" `
    aniworld python -m aniworld
  ```

- **Windows (CMD):**

  ```cmd
  docker run -it --rm ^
    -v "%cd%\Downloads:/app/Downloads" ^
    aniworld python -m aniworld
  ```

> **Note:**
> Mount the Downloads folder to `/app/Downloads` in the container to save downloaded episodes to your local machine. You can change the host path as needed.

### Docker Compose (with Web UI)

```bash
docker-compose up -d --build
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Documentation

For comprehensive user guides, tutorials, and additional documentation, visit the [official documentation](https://www.phoenixthrush.com/AniWorld-Downloader-Docs/). The docs are continuously updated with new features, detailed tutorials, and troubleshooting guides.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Contributing

Contributions to AniWorld Downloader are highly appreciated! You can help enhance the project by:

- **Reporting Bugs**: Identify and report issues to improve functionality
- **Suggesting Features**: Share ideas to expand the tool's capabilities
- **Submitting Pull Requests**: Contribute code to fix bugs or add new features
- **Improving Documentation**: Help enhance user guides and technical documentation

### Contributors

<a href="https://github.com/phoenixthrush/AniWorld-Downloader/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=phoenixthrush/AniWorld-Downloader" alt="Contributors" />
</a>

- **Lulu** (since Sep 14, 2024)  
  [![wakatime](https://wakatime.com/badge/user/ebc8f6ad-7a1c-4f3a-ad43-cc402feab5fc/project/f39b2952-8865-4176-8ccc-4716e73d0df3.svg)](https://wakatime.com/badge/user/ebc8f6ad-7a1c-4f3a-ad43-cc402feab5fc/project/f39b2952-8865-4176-8ccc-4716e73d0df3)

- **Tmaster055** (since Oct 21, 2024)  
  [![Wakatime Badge](https://wakatime.com/badge/user/79a1926c-65a1-4f1c-baf3-368712ebbf97/project/5f191c34-1ee2-4850-95c3-8d85d516c449.svg)](https://wakatime.com/badge/user/79a1926c-65a1-4f1c-baf3-368712ebbf97/project/5f191c34-1ee2-4850-95c3-8d85d516c449.svg)

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Dependencies

- **niquests** – For making HTTP requests
- **npyscreen** – For building the interactive text UI (TUI)
- **ffmpeg-python** – Python bindings for FFmpeg (requires FFmpeg installed/available on your system)
- **python-dotenv** – For managing environment variables via `.env`
- **rich** – For colored terminal output (used by `aniworld --examples`)
- **fake-useragent** – For generating random user agents (may be replaced in the future)

Windows-only dependency:

- **windows-curses** – Enables curses support required by `npyscreen` on Windows  
  *(installed automatically on Windows; version is pinned for Python < 3.14)*

All required dependencies are installed automatically when AniWorld Downloader is installed via `pip`.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Credits

AniWorld Downloader is built upon the work of several amazing open-source projects:

- **[mpv](https://github.com/mpv-player/mpv.git)**: A versatile media player used for seamless streaming
- **[Syncplay](https://github.com/Syncplay/syncplay.git)**: Enables synchronized playback sessions with friends
- **[Anime4K](https://github.com/bloc97/Anime4K)**: A cutting-edge real-time upscaler for enhancing anime video quality
- **[Aniskip](https://api.aniskip.com/api-docs)**: Provides the opening and ending skip times for the Aniskip extension

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Support

If you need help with AniWorld Downloader, you can:

- **Submit an issue** on the [GitHub Issues](https://github.com/phoenixthrush/AniWorld-Downloader/issues) page
- **Reach out directly** via email at [contact@phoenixthrush.com](mailto:contact@phoenixthrush.com) or on Discord at `phoenixthrush` or `tmaster067`

While email support is available, opening a GitHub issue is preferred, even for installation-related questions, as it helps others benefit from shared solutions. However, feel free to email if that's your preference.

If you find AniWorld Downloader useful, consider starring the repository on GitHub. Your support is greatly appreciated and inspires continued development.

Thank you for using AniWorld Downloader!

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Legal Disclaimer

AniWorld Downloader is a client-side tool that helps you access content hosted by third-party websites. It does not host, upload, store, or distribute any media itself.

AniWorld Downloader is not intended to promote piracy or copyright infringement. You are solely responsible for how you use the software and for ensuring that your use complies with applicable laws and the terms of the websites you access.

The developer provides this project “as is” and is not responsible for third-party content, external links, or the availability, accuracy, legality, or reliability of any third-party service.

If you have concerns about specific content, please contact the relevant website owner, administrator, or hosting provider.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=phoenixthrush/AniWorld-Downloader&type=Date)](https://star-history.com/#phoenixthrush/AniWorld-Downloader&Date)

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## License

This project is licensed under the **[MIT License](LICENSE)**.
For more details, see the LICENSE file.
