aniworld


Nameaniworld JSON
Version 2.4.5 PyPI version JSON
download
home_pageNone
SummaryCross-platform command-line tool to download and stream anime from aniworld.to
upload_time2024-12-16 08:27:29
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords anime aniworld anime-downloader aniworld-downloader scraping mpv syncplay yt-dlp voe streamtape vidoza
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a id="readme-top"></a>
# AniWorld Downloader

AniWorld Downloader is a command-line tool built to download and stream anime content from [aniworld.to](https://aniworld.to). With it, you can grab single episodes, download entire seasons, and organize files into neatly structured folders. It's cross-platform, so it works on Windows, macOS, and Linux for a smooth experience across all major OSes.

![Downloads](https://img.shields.io/pypi/dm/aniworld?label=Downloads&color=blue)
![License](https://img.shields.io/pypi/l/aniworld?label=License&color=blue)

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

<details>
  <summary>Table of Contents</summary>

### Overview
- [Features](#features)
- [Supported Sites and Extractors](#supported-sites-and-extractors)
- [TODO](#todo-list)

### Getting Started
- [Installation](#installation)
  - [Latest Release](#installing-aniworld-downloader)
  - [Dev Version (Unstable)](#development-version-unstable--requires-git)
- [Uninstallation](#uninstallation)

### Usage Guide
- [Usage Basics](#usage)
  - [Running with Menu](#running-with-menu)
  - [Command-Line Arguments](#aniworld-command-options)

### Examples
- [Command-Line Examples](#command-line-examples)
  - [Download a Single Episode](#example-1-download-a-single-episode)
  - [Download Multiple Episodes](#example-2-download-multiple-episodes)
  - [Watch Episodes with Aniskip](#example-3-watch-episodes-with-aniskip)
  - [Syncplay with Friends](#example-4-syncplay-with-friends)
  - [Download with Specific Provider and Language](#example-5-download-with-specific-provider-and-language)
  - [Use Episode File](#example-6-use-an-episode-file)

### Advanced Setup
- [Anime4K Setup](#anime4k-setup)

### FAQs and Support
- [FAQ](#faq)
  - [s.to & bs.to Support](#sto--bsto-support)
- [Support](#support)

### Contribution and Licensing
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

### Legal Disclaimer
- [Legal Disclaimer](#legal-disclaimer)

### Project Insights
- [Star History](#star-history)
</details>

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

## :construction: Aniworld-Downloader is Currently Being Rewritten

Aniworld-Downloader is currently being rewritten on the `next` branch to be even faster, with the code made much more readable by using OOP principles. This rewrite will take some time until it reaches the same stage as the main branch. However, I will continue supporting the main branch and fix any bugs that may occur. If you want, you can check it out [here](https://github.com/phoenixthrush/AniWorld-Downloader/tree/next).

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

## Features

- **Episode Downloads**: Easily download single episodes or entire seasons in one go.
- **Instant Streaming**: Stream episodes directly via the mpv player.
- **Auto Play Next**: Automatically transition to the next episode for uninterrupted viewing.
- **Flexible Providers**: Choose from Vidoza, VOE, and Streamtape, with Doodstream support coming soon.
- **Language Options**: Switch between German Dub, English Sub, or German Sub based on your preference.
- **Aniskip Integration**: Automatically skip intros and outros.
- **Syncplay for Group Watching**: Enjoy synchronized anime watching sessions with friends.
- **Proxy Compatibility**: Set up an HTTP proxy for restricted network environments.

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

## Supported Sites and Extractors

| Site               | Supported Providers                            | Status                                                                                  |
|--------------------|------------------------------------------------|-----------------------------------------------------------------------------------------|
| **aniworld.to**    | VOE, Vidmoly, Doodstream, Vidoza,<br/> Streamtape, SpeedFiles | ➖ Luluvdo (in progress) <br> ❌ Filemoon |
| **streamkiste.tv** | Native extractor                               | ✔️ |
| **hanime.tv**      | Native extractor                               | ✔️ |
| **nhentai.net**    | Native extractor                               | ✔️ |
| **jav.guru**       | Native extractor                               | ✔️ |

> **Note:** Streamtape has been removed by aniworld.to and from the menu, but it still works and can be accessed using `--provider`.
> **Note:** The menu currently only supports aniworld.to. To access other sites, you need to specify `--episode`.  
> **Note:** Native extractor sites require the optional dependency **playwright**. To install, run `pip install playwright` and then `playwright install` to complete the setup.

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

## Installation

### Prerequisites

1. **Python Version**: Ensure you have **[Python 3.9](https://www.python.org/downloads/)** or higher installed.  
   - **Note**: Although Python 3.13 is available, it does not include `windows-curses`, which is needed for the menu to work on Windows. To avoid issues, please use **Python 3.12** until `windows-curses` is updated. Check for updates [here](https://pypi.org/project/windows-curses/#files).

<details>
  <summary>Python Installation Tutorial (Windows only)</summary>
  <img src="https://github.com/phoenixthrush/AniWorld-Downloader/blob/main/.github/Python_Add_to_Path_Tutorial.png?raw=true" alt="Python Installation Tutorial">

**Note:** If you've restarted the terminal and `aniworld` isn't being recognized, you have two options:
- Add `aniworld` to your PATH so it can be found globally.
- Run `python -m aniworld`, which should work without adding it to the PATH.
  
<p align="right">(<a href="#readme-top">back to top</a>)</p>
</details>

### Installing AniWorld Downloader

- To install the latest release of AniWorld Downloader, run:

    ```shell
    pip install aniworld
    ```

- To update to the latest version, use:

    ```shell
    pip install -U aniworld
    ```

### Development Version (Unstable & Requires Git)

- To install the latest development changes directly from GitHub, use:

    ```shell
    pip install --upgrade git+https://github.com/phoenixthrush/AniWorld-Downloader.git#egg=aniworld
    ```

- To update, simply rerun the command above. These builds may be unstable, so it’s good to check regularly.

#### Local Installation

If you prefer to have the files locally:

1. Clone the repository:

    ```shell
    git clone https://github.com/phoenixthrush/AniWorld-Downloader aniworld
    ```

2. Install it in editable mode:

    ```shell
    pip install -U -e ./aniworld
    ```

3. To keep your local version up to date, run:

    ```shell
    git -C aniworld pull
    ```

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

## Uninstallation

To uninstall AniWorld Downloader, run the following command:

```shell
aniworld --uninstall
```

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

## Usage

### Running with Menu

To launch AniWorld Downloader with an interactive menu, use:

```shell
aniworld
```

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

## Command-Line Examples

AniWorld Downloader supports various command-line options for downloading and streaming anime without using the interactive menu. This allows access to advanced features not available in the menu (e.g., `--aniskip`, `--keep-watching`, `--syncplay-password`).

### Example 1: Download a Single Episode

To download episode 1 of "Demon Slayer: Kimetsu no Yaiba":

```shell
aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1
```

### Example 2: Download Multiple Episodes

To download multiple episodes of "Demon Slayer":

```shell
aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-2
```

### Example 3: Watch Episodes with Aniskip

To watch an episode while skipping intros and outros:

```shell
aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Watch --aniskip
```

### Example 4: Syncplay with Friends

To syncplay a specific episode with friends:

```shell
aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching
```

#### Language Options for Syncplay

You can choose different languages for yourself and your friends:

- For German Dub:

    ```shell
    aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching --language "German Dub" --aniskip
    ```

- For English Sub:

    ```shell
    aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching --language "English Sub" --aniskip
    ```

**Note:** Anyone watching the same anime (regardless of episode) will automatically join the room if Syncplay is enabled. To restrict access to strangers, set a password for the room:

```shell
aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching --language "English Sub" --aniskip --syncplay-password beans
```

### Example 5: Download with Specific Provider and Language

To download an episode using the VOE provider with English subtitles:

```shell
aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --provider VOE --language "English Sub"
```

### Example 6: Use an Episode File

You can download episodes listed in a text file. Here’s an example of what the text file (`test.txt`) should look like:

```
# The whole anime
https://aniworld.to/anime/stream/alya-sometimes-hides-her-feelings-in-russian

# The whole Season 2
https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-2

# Only Season 3 Episode 13
https://aniworld.to/anime/stream/kaguya-sama-love-is-war/staffel-3/episode-13
```

To download the episodes specified in the file, use:

```shell
aniworld --episode-file /Users/goofball/Downloads/test.txt --language "German Dub"
```

You can also combine this with `Watch` and `Syncplay` actions, along with other arguments as needed.

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

## Anime4K Setup

To set up Anime4K, run the following commands based on your GPU type. This setup will install everything needed to use Anime4K in the mpv player, even outside of AniWorld.

### For Higher-End GPUs
*(e.g., GTX 1080, RTX 2070, RTX 3060, RX 590, Vega 56, 5700XT, 6600XT, M1 Pro, M1 Max, M1 Ultra, M2 Pro, M2 Max)*

```shell
aniworld --anime4k High
```

### For Lower-End GPUs
*(e.g., GTX 980, GTX 1060, RX 570, M1, M2, Intel chips)*

```shell
aniworld --anime4k Low
```

### To Remove Anime4K
If you want to uninstall Anime4K, use the following command:

```shell
aniworld --anime4k Remove
```

### Notes
- This installation saves all necessary files into the **mpv** directory.
- You can switch between settings by specifying the optimized modes (`High` or `Low`).
- Use the `Remove` option to uninstall Anime4K easily.

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

## AniWorld Command Options

```shell
aniworld --help
```

```
usage: aniworld [-h] [-v] [-d] [-u] [-U {mpv,yt-dlp,syncplay,all}] [-s SLUG]
                [-l LINK] [-q QUERY] [-e EPISODE [EPISODE ...]]
                [-f EPISODE_FILE] [-lf] [-a {Watch,Download,Syncplay}]
                [-o OUTPUT] [-O OUTPUT_DIRECTORY]
                [-L {German Dub,English Sub,German Sub}]
                [-p {Vidoza,Streamtape,VOE,Doodstream}] [-A {High,Low,Remove}]
                [-sH SYNCPLAY_HOSTNAME] [-sU SYNCPLAY_USERNAME]
                [-sR SYNCPLAY_ROOM]
                [-sP SYNCPLAY_PASSWORD [SYNCPLAY_PASSWORD ...]] [-k] [-K]
                [-r [RANDOM_ANIME]] [-D] [-C] [-x PROXY] [-w]

Parse optional command line arguments.

options:
  -h, --help            show this help message and exit

General Options:
  -v, --version         Print version info
  -d, --debug           Enable debug mode
  -u, --uninstall       Self uninstall
  -U {mpv,yt-dlp,syncplay,all}, --update {mpv,yt-dlp,syncplay,all}
                        Update mpv, yt-dlp, syncplay, or all.

Search Options:
  -s SLUG, --slug SLUG  Search query - E.g. demon-slayer-kimetsu-no-yaiba
  -l LINK, --link LINK  Search query - E.g.
                        https://aniworld.to/anime/stream/demon-slayer-kimetsu-
                        no-yaiba
  -q QUERY, --query QUERY
                        Search query input - E.g. demon

Episode Options:
  -e EPISODE [EPISODE ...], --episode EPISODE [EPISODE ...]
                        List of episode URLs
  -f EPISODE_FILE, --episode-file EPISODE_FILE
                        File path containing a list of episode URLs
  -lf, --episode-local  NOT IMPLEMENTED YET - Use local episode files instead
                        of URLs

Action Options:
  -a {Watch,Download,Syncplay}, --action {Watch,Download,Syncplay}
                        Action to perform
  -o OUTPUT, --output OUTPUT
                        Download directory E.g. /Users/phoenixthrush/Downloads
  -O OUTPUT_DIRECTORY, --output-directory OUTPUT_DIRECTORY
                        Final download directory E.g ExampleDirectory,
                        defaults to anime name if not specified
  -L {German Dub,English Sub,German Sub}, --language {German Dub,English Sub,German Sub}
                        Language choice
  -p {Vidoza,Streamtape,VOE,Doodstream}, --provider {Vidoza,Streamtape,VOE,Doodstream}
                        Provider choice

Anime4K Options:
  -A {High,Low,Remove}, --anime4k {High,Low,Remove}
                        Set Anime4K optimised mode (High Eg.: GTX 1080, RTX
                        2070, RTX 3060, RX 590, Vega 56, 5700XT, 6600XT; Low
                        Eg.: GTX 980, GTX 1060, RX 570, or Remove).

Syncplay Options:
  -sH SYNCPLAY_HOSTNAME, --syncplay-hostname SYNCPLAY_HOSTNAME
                        Set syncplay hostname
  -sU SYNCPLAY_USERNAME, --syncplay-username SYNCPLAY_USERNAME
                        Set syncplay username
  -sR SYNCPLAY_ROOM, --syncplay-room SYNCPLAY_ROOM
                        Set syncplay room
  -sP SYNCPLAY_PASSWORD [SYNCPLAY_PASSWORD ...], --syncplay-password SYNCPLAY_PASSWORD [SYNCPLAY_PASSWORD ...]
                        Set a syncplay room password

Miscellaneous Options:
  -k, --aniskip         Skip intro and outro
  -K, --keep-watching   Continue watching
  -r [RANDOM_ANIME], --random-anime [RANDOM_ANIME]
                        Select random anime (default genre is "all", Eg.:
                        Drama)
  -D, --only-direct-link
                        Output direct link
  -C, --only-command    Output command
  -x PROXY, --proxy PROXY
                        Set HTTP Proxy - E.g. http://0.0.0.0:8080
  -w, --use-playwright  Bypass fetching with a headless browser using
                        Playwright instead (EXPERIMENTAL!!!)
```

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

## Dependencies

AniWorld Downloader requires the following Python packages:

- `requests`
- `beautifulsoup4`
- `npyscreen`
- `colorlog`
- `py7zr`
- `packaging`
- `yt-dlp`
- `windows-curses` (only for Windows users)

These packages are automatically installed when you set up AniWorld Downloader using pip.

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

## TODO List

### Completed Tasks
- **Command-Line Improvements**
  - [x] Implement `argparse` for command-line argument parsing.
  - [x] Refactor the code into modular Python files.
  - [x] Display season and episode names instead of full links in selections.

- **Logging and Proxy Support**
  - [x] Integrate the Python logging module.
  - [x] Add support for proxy configurations.

- **Automatic Installations**
  - [x] Automatically download and install the following on Windows & Linux:
    - [x] `mpv`
    - [x] `yt-dlp`
    - [x] `Syncplay`

- **Feature Enhancements**
  - [x] Implement movie support.
  - [x] Configure Anime4K installation for:
    - [x] Windows
    - [x] MacOS
    - [x] Linux
  - [x] Add options for Syncplay room passwords.
  - [x] Add mass file support.
  - [x] Add Captcha bypass for headless browser fetches.
  - [x] Allow changing final output folder
  - [x] Add option to select a random anime optionally via genre
  - [x] Add additional installation variants.
  - [x] Add anime description
  
- **Bug Fixes**
  - [x] Fix season episode count.
  - [x] Fix yt-dlp progress bar on Windows.
  - [x] Fix empty output for unavailable selected languages.
  - [x] Use anime title instead of slug on the episode list.
  - [x] Add time to cancel.
  - [x] Fix output folder for mass processed files.
  - [x] Fix Syncplay and mpv video desync issue (use Vidoza for Watch & Syncplay).
  - [x] Automatically clean up old logs.
  - [x] Separate the functionalities of aniskip and auto start & exit.
  - [x] Sanitise echo strings on Windows
  - [x] Add ascii art fallback on Windows 10
  - [x] Fix mpv auto download on Windows 10
  - [x] Fix Aniskip for seasons beyond the first
  - [x] Fix --only-direct-link and only-command

### Upcoming Tasks
  - [ ] Syncplay support for local playback
  - [ ] Implement an ordered list for provider fallback in globals.py
  - [ ] Anonymize logs by removing usernames
  - [ ] Complete backend rewrite using OOP
  - [ ] Add support for Doodstream

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

## FAQ

#### Download and Viewing Recommendations
In older versions, the default provider for both downloading and watching with syncplay and mpv was Vidoza. However, since Vidoza and Streamtape throttle download speeds, I recommend using **VOE** for downloads, as it can fully utilize your bandwidth.

**Drawback of VOE:**
- Many fragments can be invalid, affecting playback with mpv. While downloads using yt-dlp work fine, invalid fragments may cause scenes to skip or glitch, leading to noticeable disruptions, especially during syncplay, where different fragment issues among viewers can result in annoying jumps.

**Current Recommendations:**
- **Download in this order:**  
  VOE > Vidoza > Streamtape

- **For viewing in mpv or syncplay:**  
  Vidoza > Streamtape > VOE

### s.to & bs.to Support
I previously had support for s.to in a separate branch, but it is now unmaintained and untested. Currently, I do not plan to re-implement support for s.to, as I've focused on stabilizing the existing code. Before adding new providers, I need to streamline the backend, which is somewhat messy due to redundant functions and fetches from recent feature additions.

**Note on Adding s.to Support:**
- Adding s.to support would not be difficult—it only requires one fewer fetch than Aniworld's current method to access streaming providers. If anyone is interested in contributing to this effort, I would be happy to merge the addition.

There are already other tools that support s.to. For terminal-based viewing of s.to, check out my friend's project called **[gucken](https://github.com/Commandcracker/gucken)**—he’s doing great work there. 

Regarding Aniworld’s claim of hosting 1,000+ license-free anime, it’s worth noting that they also stream new shows that may require subscriptions elsewhere. Supporting s.to could mean indirectly accessing copyrighted content, such as Netflix originals. As I do not host any content but fetch it directly from streaming providers, I am not liable for any issues arising from downloading anime.

Feel free to contribute! Any help is appreciated, and I’d be happy to merge in support for s.to or bs.to if it gets added.

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

## Credits
- **[mpv](https://github.com/mpv-player/mpv.git)**: Media player used for streaming.
- **[yt-dlp](https://github.com/yt-dlp/yt-dlp.git)**: Tool for downloading videos.
- **[Syncplay](https://github.com/Syncplay/syncplay.git)**: Service for synchronized playback with friends.
- **[Anime4K](https://github.com/bloc97/Anime4K)**: A high-quality real-time upscaler for anime video.
- **[htv](https://github.com/rxqv/htv)**: Backend implementation for hanime playback and downloading.

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

## Contributing
Contributions to AniWorld Downloader are welcome! Your input helps improve the project, whether it’s through:
- Reporting bugs
- Suggesting features
- Submitting pull requests

### Contributors

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

- **Lulu** (since Sep 14, 2024)  
  ![wakatime](https://wakatime.com/badge/user/ebc8f6ad-7a1c-4f3a-ad43-cc402feab5fc/project/408bbea7-23d0-4d6c-846d-79628e6b136c.svg)

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

  Thank you [Tmaster055](https://github.com/Tmaster055) for fixing Aniskip by fetching the correct MAL ID!<br>
  Thank you [fundyjo](https://github.com/fundyjo) for the Doodstream extractor!

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

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

## Support

I’ve received several reports from users experiencing unexpected menu quits. Recently, streaming providers have started blocking IP addresses from downloading. You can bypass this by using a VPN. You might try using the `--use-playwright` option instead, though it's still experimental and may not be very effective. Additionally, run aniworld with the `--debug` flag.

This will typically reveal a timeout error, indicating the domain couldn’t be reached or another issue.

### How to Get Help
If you still need assistance with AniWorld Downloader, you can:

- **File a report** via the [GitHub Issues](https://github.com/phoenixthrush/AniWorld-Downloader/issues) page.
- **Contact me directly** via email at [contact@phoenixthrush.com](mailto:contact@phoenixthrush.com), on Matrix `@phoenixthrush:matrix.org`, or on Discord `phoenixthrush`.

While I do respond to emails, opening a GitHub issue is preferable, even for installation questions, so others can find solutions too. However, I’m still happy to help via email if you prefer.

If you enjoy AniWorld Downloader and want to support the project, please consider starring the repository on GitHub. It’s a small gesture that means a lot and motivates me to keep improving the project.

Thank you for your support and feedback!

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

## Legal Disclaimer

Aniworld-Downloader is intended only for accessing publicly available content and does not support or encourage piracy or copyright infringement. As the program's creator, I am not liable for, nor associated with, any external links or the content they lead to.

All content accessed through this program is freely available online, and the program does not host or distribute copyrighted material. The program has no control over the nature, content, or availability of the linked websites.

If you have concerns or objections about the content accessed via this program, please address them to the relevant website owners, administrators, or hosting providers. Thank you.

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

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "aniworld",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Phoenixthrush UwU <contact@phoenixthrush.com>",
    "keywords": "anime, aniworld, anime-downloader, aniworld-downloader, scraping, mpv, syncplay, yt-dlp, voe, streamtape, vidoza",
    "author": null,
    "author_email": "Phoenixthrush UwU <contact@phoenixthrush.com>",
    "download_url": "https://files.pythonhosted.org/packages/5e/60/817c3a679025ab515e4d93ffdd26cbc1784eb2d965126c53e8cb0d2af053/aniworld-2.4.5.tar.gz",
    "platform": null,
    "description": "<a id=\"readme-top\"></a>\n# AniWorld Downloader\n\nAniWorld Downloader is a command-line tool built to download and stream anime content from [aniworld.to](https://aniworld.to). With it, you can grab single episodes, download entire seasons, and organize files into neatly structured folders. It's cross-platform, so it works on Windows, macOS, and Linux for a smooth experience across all major OSes.\n\n![Downloads](https://img.shields.io/pypi/dm/aniworld?label=Downloads&color=blue)\n![License](https://img.shields.io/pypi/l/aniworld?label=License&color=blue)\n\n![AniWorld Downloader - Demo](https://github.com/phoenixthrush/AniWorld-Downloader/blob/main/.github/demo.png?raw=true)\n\n<details>\n  <summary>Table of Contents</summary>\n\n### Overview\n- [Features](#features)\n- [Supported Sites and Extractors](#supported-sites-and-extractors)\n- [TODO](#todo-list)\n\n### Getting Started\n- [Installation](#installation)\n  - [Latest Release](#installing-aniworld-downloader)\n  - [Dev Version (Unstable)](#development-version-unstable--requires-git)\n- [Uninstallation](#uninstallation)\n\n### Usage Guide\n- [Usage Basics](#usage)\n  - [Running with Menu](#running-with-menu)\n  - [Command-Line Arguments](#aniworld-command-options)\n\n### Examples\n- [Command-Line Examples](#command-line-examples)\n  - [Download a Single Episode](#example-1-download-a-single-episode)\n  - [Download Multiple Episodes](#example-2-download-multiple-episodes)\n  - [Watch Episodes with Aniskip](#example-3-watch-episodes-with-aniskip)\n  - [Syncplay with Friends](#example-4-syncplay-with-friends)\n  - [Download with Specific Provider and Language](#example-5-download-with-specific-provider-and-language)\n  - [Use Episode File](#example-6-use-an-episode-file)\n\n### Advanced Setup\n- [Anime4K Setup](#anime4k-setup)\n\n### FAQs and Support\n- [FAQ](#faq)\n  - [s.to & bs.to Support](#sto--bsto-support)\n- [Support](#support)\n\n### Contribution and Licensing\n- [Contributing](#contributing)\n- [Credits](#credits)\n- [License](#license)\n\n### Legal Disclaimer\n- [Legal Disclaimer](#legal-disclaimer)\n\n### Project Insights\n- [Star History](#star-history)\n</details>\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## :construction: Aniworld-Downloader is Currently Being Rewritten\n\nAniworld-Downloader is currently being rewritten on the `next` branch to be even faster, with the code made much more readable by using OOP principles. This rewrite will take some time until it reaches the same stage as the main branch. However, I will continue supporting the main branch and fix any bugs that may occur. If you want, you can check it out [here](https://github.com/phoenixthrush/AniWorld-Downloader/tree/next).\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Features\n\n- **Episode Downloads**: Easily download single episodes or entire seasons in one go.\n- **Instant Streaming**: Stream episodes directly via the mpv player.\n- **Auto Play Next**: Automatically transition to the next episode for uninterrupted viewing.\n- **Flexible Providers**: Choose from Vidoza, VOE, and Streamtape, with Doodstream support coming soon.\n- **Language Options**: Switch between German Dub, English Sub, or German Sub based on your preference.\n- **Aniskip Integration**: Automatically skip intros and outros.\n- **Syncplay for Group Watching**: Enjoy synchronized anime watching sessions with friends.\n- **Proxy Compatibility**: Set up an HTTP proxy for restricted network environments.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Supported Sites and Extractors\n\n| Site               | Supported Providers                            | Status                                                                                  |\n|--------------------|------------------------------------------------|-----------------------------------------------------------------------------------------|\n| **aniworld.to**    | VOE, Vidmoly, Doodstream, Vidoza,<br/> Streamtape, SpeedFiles | \u2796 Luluvdo (in progress) <br> \u274c Filemoon |\n| **streamkiste.tv** | Native extractor                               | \u2714\ufe0f |\n| **hanime.tv**      | Native extractor                               | \u2714\ufe0f |\n| **nhentai.net**    | Native extractor                               | \u2714\ufe0f |\n| **jav.guru**       | Native extractor                               | \u2714\ufe0f |\n\n> **Note:** Streamtape has been removed by aniworld.to and from the menu, but it still works and can be accessed using `--provider`.\n> **Note:** The menu currently only supports aniworld.to. To access other sites, you need to specify `--episode`.  \n> **Note:** Native extractor sites require the optional dependency **playwright**. To install, run `pip install playwright` and then `playwright install` to complete the setup.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Installation\n\n### Prerequisites\n\n1. **Python Version**: Ensure you have **[Python 3.9](https://www.python.org/downloads/)** or higher installed.  \n   - **Note**: Although Python 3.13 is available, it does not include `windows-curses`, which is needed for the menu to work on Windows. To avoid issues, please use **Python 3.12** until `windows-curses` is updated. Check for updates [here](https://pypi.org/project/windows-curses/#files).\n\n<details>\n  <summary>Python Installation Tutorial (Windows only)</summary>\n  <img src=\"https://github.com/phoenixthrush/AniWorld-Downloader/blob/main/.github/Python_Add_to_Path_Tutorial.png?raw=true\" alt=\"Python Installation Tutorial\">\n\n**Note:** If you've restarted the terminal and `aniworld` isn't being recognized, you have two options:\n- Add `aniworld` to your PATH so it can be found globally.\n- Run `python -m aniworld`, which should work without adding it to the PATH.\n  \n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n</details>\n\n### Installing AniWorld Downloader\n\n- To install the latest release of AniWorld Downloader, run:\n\n    ```shell\n    pip install aniworld\n    ```\n\n- To update to the latest version, use:\n\n    ```shell\n    pip install -U aniworld\n    ```\n\n### Development Version (Unstable & Requires Git)\n\n- To install the latest development changes directly from GitHub, use:\n\n    ```shell\n    pip install --upgrade git+https://github.com/phoenixthrush/AniWorld-Downloader.git#egg=aniworld\n    ```\n\n- To update, simply rerun the command above. These builds may be unstable, so it\u2019s good to check regularly.\n\n#### Local Installation\n\nIf you prefer to have the files locally:\n\n1. Clone the repository:\n\n    ```shell\n    git clone https://github.com/phoenixthrush/AniWorld-Downloader aniworld\n    ```\n\n2. Install it in editable mode:\n\n    ```shell\n    pip install -U -e ./aniworld\n    ```\n\n3. To keep your local version up to date, run:\n\n    ```shell\n    git -C aniworld pull\n    ```\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Uninstallation\n\nTo uninstall AniWorld Downloader, run the following command:\n\n```shell\naniworld --uninstall\n```\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Usage\n\n### Running with Menu\n\nTo launch AniWorld Downloader with an interactive menu, use:\n\n```shell\naniworld\n```\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Command-Line Examples\n\nAniWorld Downloader supports various command-line options for downloading and streaming anime without using the interactive menu. This allows access to advanced features not available in the menu (e.g., `--aniskip`, `--keep-watching`, `--syncplay-password`).\n\n### Example 1: Download a Single Episode\n\nTo download episode 1 of \"Demon Slayer: Kimetsu no Yaiba\":\n\n```shell\naniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1\n```\n\n### Example 2: Download Multiple Episodes\n\nTo download multiple episodes of \"Demon Slayer\":\n\n```shell\naniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-2\n```\n\n### Example 3: Watch Episodes with Aniskip\n\nTo watch an episode while skipping intros and outros:\n\n```shell\naniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Watch --aniskip\n```\n\n### Example 4: Syncplay with Friends\n\nTo syncplay a specific episode with friends:\n\n```shell\naniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching\n```\n\n#### Language Options for Syncplay\n\nYou can choose different languages for yourself and your friends:\n\n- For German Dub:\n\n    ```shell\n    aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching --language \"German Dub\" --aniskip\n    ```\n\n- For English Sub:\n\n    ```shell\n    aniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching --language \"English Sub\" --aniskip\n    ```\n\n**Note:** Anyone watching the same anime (regardless of episode) will automatically join the room if Syncplay is enabled. To restrict access to strangers, set a password for the room:\n\n```shell\naniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --action Syncplay --keep-watching --language \"English Sub\" --aniskip --syncplay-password beans\n```\n\n### Example 5: Download with Specific Provider and Language\n\nTo download an episode using the VOE provider with English subtitles:\n\n```shell\naniworld --episode https://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-1/episode-1 --provider VOE --language \"English Sub\"\n```\n\n### Example 6: Use an Episode File\n\nYou can download episodes listed in a text file. Here\u2019s an example of what the text file (`test.txt`) should look like:\n\n```\n# The whole anime\nhttps://aniworld.to/anime/stream/alya-sometimes-hides-her-feelings-in-russian\n\n# The whole Season 2\nhttps://aniworld.to/anime/stream/demon-slayer-kimetsu-no-yaiba/staffel-2\n\n# Only Season 3 Episode 13\nhttps://aniworld.to/anime/stream/kaguya-sama-love-is-war/staffel-3/episode-13\n```\n\nTo download the episodes specified in the file, use:\n\n```shell\naniworld --episode-file /Users/goofball/Downloads/test.txt --language \"German Dub\"\n```\n\nYou can also combine this with `Watch` and `Syncplay` actions, along with other arguments as needed.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Anime4K Setup\n\nTo set up Anime4K, run the following commands based on your GPU type. This setup will install everything needed to use Anime4K in the mpv player, even outside of AniWorld.\n\n### For Higher-End GPUs\n*(e.g., GTX 1080, RTX 2070, RTX 3060, RX 590, Vega 56, 5700XT, 6600XT, M1 Pro, M1 Max, M1 Ultra, M2 Pro, M2 Max)*\n\n```shell\naniworld --anime4k High\n```\n\n### For Lower-End GPUs\n*(e.g., GTX 980, GTX 1060, RX 570, M1, M2, Intel chips)*\n\n```shell\naniworld --anime4k Low\n```\n\n### To Remove Anime4K\nIf you want to uninstall Anime4K, use the following command:\n\n```shell\naniworld --anime4k Remove\n```\n\n### Notes\n- This installation saves all necessary files into the **mpv** directory.\n- You can switch between settings by specifying the optimized modes (`High` or `Low`).\n- Use the `Remove` option to uninstall Anime4K easily.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## AniWorld Command Options\n\n```shell\naniworld --help\n```\n\n```\nusage: aniworld [-h] [-v] [-d] [-u] [-U {mpv,yt-dlp,syncplay,all}] [-s SLUG]\n                [-l LINK] [-q QUERY] [-e EPISODE [EPISODE ...]]\n                [-f EPISODE_FILE] [-lf] [-a {Watch,Download,Syncplay}]\n                [-o OUTPUT] [-O OUTPUT_DIRECTORY]\n                [-L {German Dub,English Sub,German Sub}]\n                [-p {Vidoza,Streamtape,VOE,Doodstream}] [-A {High,Low,Remove}]\n                [-sH SYNCPLAY_HOSTNAME] [-sU SYNCPLAY_USERNAME]\n                [-sR SYNCPLAY_ROOM]\n                [-sP SYNCPLAY_PASSWORD [SYNCPLAY_PASSWORD ...]] [-k] [-K]\n                [-r [RANDOM_ANIME]] [-D] [-C] [-x PROXY] [-w]\n\nParse optional command line arguments.\n\noptions:\n  -h, --help            show this help message and exit\n\nGeneral Options:\n  -v, --version         Print version info\n  -d, --debug           Enable debug mode\n  -u, --uninstall       Self uninstall\n  -U {mpv,yt-dlp,syncplay,all}, --update {mpv,yt-dlp,syncplay,all}\n                        Update mpv, yt-dlp, syncplay, or all.\n\nSearch Options:\n  -s SLUG, --slug SLUG  Search query - E.g. demon-slayer-kimetsu-no-yaiba\n  -l LINK, --link LINK  Search query - E.g.\n                        https://aniworld.to/anime/stream/demon-slayer-kimetsu-\n                        no-yaiba\n  -q QUERY, --query QUERY\n                        Search query input - E.g. demon\n\nEpisode Options:\n  -e EPISODE [EPISODE ...], --episode EPISODE [EPISODE ...]\n                        List of episode URLs\n  -f EPISODE_FILE, --episode-file EPISODE_FILE\n                        File path containing a list of episode URLs\n  -lf, --episode-local  NOT IMPLEMENTED YET - Use local episode files instead\n                        of URLs\n\nAction Options:\n  -a {Watch,Download,Syncplay}, --action {Watch,Download,Syncplay}\n                        Action to perform\n  -o OUTPUT, --output OUTPUT\n                        Download directory E.g. /Users/phoenixthrush/Downloads\n  -O OUTPUT_DIRECTORY, --output-directory OUTPUT_DIRECTORY\n                        Final download directory E.g ExampleDirectory,\n                        defaults to anime name if not specified\n  -L {German Dub,English Sub,German Sub}, --language {German Dub,English Sub,German Sub}\n                        Language choice\n  -p {Vidoza,Streamtape,VOE,Doodstream}, --provider {Vidoza,Streamtape,VOE,Doodstream}\n                        Provider choice\n\nAnime4K Options:\n  -A {High,Low,Remove}, --anime4k {High,Low,Remove}\n                        Set Anime4K optimised mode (High Eg.: GTX 1080, RTX\n                        2070, RTX 3060, RX 590, Vega 56, 5700XT, 6600XT; Low\n                        Eg.: GTX 980, GTX 1060, RX 570, or Remove).\n\nSyncplay Options:\n  -sH SYNCPLAY_HOSTNAME, --syncplay-hostname SYNCPLAY_HOSTNAME\n                        Set syncplay hostname\n  -sU SYNCPLAY_USERNAME, --syncplay-username SYNCPLAY_USERNAME\n                        Set syncplay username\n  -sR SYNCPLAY_ROOM, --syncplay-room SYNCPLAY_ROOM\n                        Set syncplay room\n  -sP SYNCPLAY_PASSWORD [SYNCPLAY_PASSWORD ...], --syncplay-password SYNCPLAY_PASSWORD [SYNCPLAY_PASSWORD ...]\n                        Set a syncplay room password\n\nMiscellaneous Options:\n  -k, --aniskip         Skip intro and outro\n  -K, --keep-watching   Continue watching\n  -r [RANDOM_ANIME], --random-anime [RANDOM_ANIME]\n                        Select random anime (default genre is \"all\", Eg.:\n                        Drama)\n  -D, --only-direct-link\n                        Output direct link\n  -C, --only-command    Output command\n  -x PROXY, --proxy PROXY\n                        Set HTTP Proxy - E.g. http://0.0.0.0:8080\n  -w, --use-playwright  Bypass fetching with a headless browser using\n                        Playwright instead (EXPERIMENTAL!!!)\n```\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Dependencies\n\nAniWorld Downloader requires the following Python packages:\n\n- `requests`\n- `beautifulsoup4`\n- `npyscreen`\n- `colorlog`\n- `py7zr`\n- `packaging`\n- `yt-dlp`\n- `windows-curses` (only for Windows users)\n\nThese packages are automatically installed when you set up AniWorld Downloader using pip.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## TODO List\n\n### Completed Tasks\n- **Command-Line Improvements**\n  - [x] Implement `argparse` for command-line argument parsing.\n  - [x] Refactor the code into modular Python files.\n  - [x] Display season and episode names instead of full links in selections.\n\n- **Logging and Proxy Support**\n  - [x] Integrate the Python logging module.\n  - [x] Add support for proxy configurations.\n\n- **Automatic Installations**\n  - [x] Automatically download and install the following on Windows & Linux:\n    - [x] `mpv`\n    - [x] `yt-dlp`\n    - [x] `Syncplay`\n\n- **Feature Enhancements**\n  - [x] Implement movie support.\n  - [x] Configure Anime4K installation for:\n    - [x] Windows\n    - [x] MacOS\n    - [x] Linux\n  - [x] Add options for Syncplay room passwords.\n  - [x] Add mass file support.\n  - [x] Add Captcha bypass for headless browser fetches.\n  - [x] Allow changing final output folder\n  - [x] Add option to select a random anime optionally via genre\n  - [x] Add additional installation variants.\n  - [x] Add anime description\n  \n- **Bug Fixes**\n  - [x] Fix season episode count.\n  - [x] Fix yt-dlp progress bar on Windows.\n  - [x] Fix empty output for unavailable selected languages.\n  - [x] Use anime title instead of slug on the episode list.\n  - [x] Add time to cancel.\n  - [x] Fix output folder for mass processed files.\n  - [x] Fix Syncplay and mpv video desync issue (use Vidoza for Watch & Syncplay).\n  - [x] Automatically clean up old logs.\n  - [x] Separate the functionalities of aniskip and auto start & exit.\n  - [x] Sanitise echo strings on Windows\n  - [x] Add ascii art fallback on Windows 10\n  - [x] Fix mpv auto download on Windows 10\n  - [x] Fix Aniskip for seasons beyond the first\n  - [x] Fix --only-direct-link and only-command\n\n### Upcoming Tasks\n  - [ ] Syncplay support for local playback\n  - [ ] Implement an ordered list for provider fallback in globals.py\n  - [ ] Anonymize logs by removing usernames\n  - [ ] Complete backend rewrite using OOP\n  - [ ] Add support for Doodstream\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## FAQ\n\n#### Download and Viewing Recommendations\nIn older versions, the default provider for both downloading and watching with syncplay and mpv was Vidoza. However, since Vidoza and Streamtape throttle download speeds, I recommend using **VOE** for downloads, as it can fully utilize your bandwidth.\n\n**Drawback of VOE:**\n- Many fragments can be invalid, affecting playback with mpv. While downloads using yt-dlp work fine, invalid fragments may cause scenes to skip or glitch, leading to noticeable disruptions, especially during syncplay, where different fragment issues among viewers can result in annoying jumps.\n\n**Current Recommendations:**\n- **Download in this order:**  \n  VOE > Vidoza > Streamtape\n\n- **For viewing in mpv or syncplay:**  \n  Vidoza > Streamtape > VOE\n\n### s.to & bs.to Support\nI previously had support for s.to in a separate branch, but it is now unmaintained and untested. Currently, I do not plan to re-implement support for s.to, as I've focused on stabilizing the existing code. Before adding new providers, I need to streamline the backend, which is somewhat messy due to redundant functions and fetches from recent feature additions.\n\n**Note on Adding s.to Support:**\n- Adding s.to support would not be difficult\u2014it only requires one fewer fetch than Aniworld's current method to access streaming providers. If anyone is interested in contributing to this effort, I would be happy to merge the addition.\n\nThere are already other tools that support s.to. For terminal-based viewing of s.to, check out my friend's project called **[gucken](https://github.com/Commandcracker/gucken)**\u2014he\u2019s doing great work there. \n\nRegarding Aniworld\u2019s claim of hosting 1,000+ license-free anime, it\u2019s worth noting that they also stream new shows that may require subscriptions elsewhere. Supporting s.to could mean indirectly accessing copyrighted content, such as Netflix originals. As I do not host any content but fetch it directly from streaming providers, I am not liable for any issues arising from downloading anime.\n\nFeel free to contribute! Any help is appreciated, and I\u2019d be happy to merge in support for s.to or bs.to if it gets added.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Credits\n- **[mpv](https://github.com/mpv-player/mpv.git)**: Media player used for streaming.\n- **[yt-dlp](https://github.com/yt-dlp/yt-dlp.git)**: Tool for downloading videos.\n- **[Syncplay](https://github.com/Syncplay/syncplay.git)**: Service for synchronized playback with friends.\n- **[Anime4K](https://github.com/bloc97/Anime4K)**: A high-quality real-time upscaler for anime video.\n- **[htv](https://github.com/rxqv/htv)**: Backend implementation for hanime playback and downloading.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Contributing\nContributions to AniWorld Downloader are welcome! Your input helps improve the project, whether it\u2019s through:\n- Reporting bugs\n- Suggesting features\n- Submitting pull requests\n\n### Contributors\n\n<a href=\"https://github.com/phoenixthrush/Aniworld-Downloader/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=phoenixthrush/Aniworld-Downloader\" />\n</a>\n\n- **Lulu** (since Sep 14, 2024)  \n  ![wakatime](https://wakatime.com/badge/user/ebc8f6ad-7a1c-4f3a-ad43-cc402feab5fc/project/408bbea7-23d0-4d6c-846d-79628e6b136c.svg)\n\n- **Tmaster055** (since Oct 21, 2024)  \n  ![wakatime](https://wakatime.com/badge/user/79a1926c-65a1-4f1c-baf3-368712ebbf97/project/5f191c34-1ee2-4850-95c3-8d85d516c449.svg)\n\n  Thank you [Tmaster055](https://github.com/Tmaster055) for fixing Aniskip by fetching the correct MAL ID!<br>\n  Thank you [fundyjo](https://github.com/fundyjo) for the Doodstream extractor!\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## License\nThis project is licensed under the **[MIT License](LICENSE)**.  \nFor more details, see the LICENSE file.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Support\n\nI\u2019ve received several reports from users experiencing unexpected menu quits. Recently, streaming providers have started blocking IP addresses from downloading. You can bypass this by using a VPN. You might try using the `--use-playwright` option instead, though it's still experimental and may not be very effective. Additionally, run aniworld with the `--debug` flag.\n\nThis will typically reveal a timeout error, indicating the domain couldn\u2019t be reached or another issue.\n\n### How to Get Help\nIf you still need assistance with AniWorld Downloader, you can:\n\n- **File a report** via the [GitHub Issues](https://github.com/phoenixthrush/AniWorld-Downloader/issues) page.\n- **Contact me directly** via email at [contact@phoenixthrush.com](mailto:contact@phoenixthrush.com), on Matrix `@phoenixthrush:matrix.org`, or on Discord `phoenixthrush`.\n\nWhile I do respond to emails, opening a GitHub issue is preferable, even for installation questions, so others can find solutions too. However, I\u2019m still happy to help via email if you prefer.\n\nIf you enjoy AniWorld Downloader and want to support the project, please consider starring the repository on GitHub. It\u2019s a small gesture that means a lot and motivates me to keep improving the project.\n\nThank you for your support and feedback!\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Legal Disclaimer\n\nAniworld-Downloader is intended only for accessing publicly available content and does not support or encourage piracy or copyright infringement. As the program's creator, I am not liable for, nor associated with, any external links or the content they lead to.\n\nAll content accessed through this program is freely available online, and the program does not host or distribute copyrighted material. The program has no control over the nature, content, or availability of the linked websites.\n\nIf you have concerns or objections about the content accessed via this program, please address them to the relevant website owners, administrators, or hosting providers. Thank you.\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=phoenixthrush/Aniworld-Downloader&type=Date)](https://star-history.com/#phoenixthrush/Aniworld-Downloader&Date)\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Cross-platform command-line tool to download and stream anime from aniworld.to",
    "version": "2.4.5",
    "project_urls": {
        "Changelog": "https://github.com/phoenixthrush/AniWorld-Downloader/commits",
        "Documentation": "https://github.com/phoenixthrush/AniWorld-Downloader/blob/main/README.md",
        "Download Link": "https://github.com/phoenixthrush/AniWorld-Downloader/archive/refs/heads/main.zip",
        "Homepage": "https://github.com/phoenixthrush/Aniworld-Downloader",
        "Issues": "https://github.com/phoenixthrush/Aniworld-Downloader/issues",
        "Repository": "https://github.com/phoenixthrush/AniWorld-Downloader.git"
    },
    "split_keywords": [
        "anime",
        " aniworld",
        " anime-downloader",
        " aniworld-downloader",
        " scraping",
        " mpv",
        " syncplay",
        " yt-dlp",
        " voe",
        " streamtape",
        " vidoza"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "180b0c072ea4548e9caed83e645e2045d7fb54ddf0b08a433e8208cda3847b4c",
                "md5": "f25dc9a9abfee9fd75982b6d39fdd9df",
                "sha256": "d141cd6735036f0690d4d7919fbc9552f3bd8ad71de4e759ab32e06b4e8ed5ab"
            },
            "downloads": -1,
            "filename": "aniworld-2.4.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f25dc9a9abfee9fd75982b6d39fdd9df",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 84771,
            "upload_time": "2024-12-16T08:27:27",
            "upload_time_iso_8601": "2024-12-16T08:27:27.480342Z",
            "url": "https://files.pythonhosted.org/packages/18/0b/0c072ea4548e9caed83e645e2045d7fb54ddf0b08a433e8208cda3847b4c/aniworld-2.4.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e60817c3a679025ab515e4d93ffdd26cbc1784eb2d965126c53e8cb0d2af053",
                "md5": "e15e93e71ccb1bc64725a5b7d39cb17e",
                "sha256": "c05103987d7cf6b3771b3f1b3a7c0dbd4bafae836b1cea10e2059898eef2414f"
            },
            "downloads": -1,
            "filename": "aniworld-2.4.5.tar.gz",
            "has_sig": false,
            "md5_digest": "e15e93e71ccb1bc64725a5b7d39cb17e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 88952,
            "upload_time": "2024-12-16T08:27:29",
            "upload_time_iso_8601": "2024-12-16T08:27:29.197372Z",
            "url": "https://files.pythonhosted.org/packages/5e/60/817c3a679025ab515e4d93ffdd26cbc1784eb2d965126c53e8cb0d2af053/aniworld-2.4.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-16 08:27:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "phoenixthrush",
    "github_project": "AniWorld-Downloader",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "aniworld"
}
        
Elapsed time: 0.89510s