Metadata-Version: 2.1
Name: myanimelist_downloader
Version: 0.0.9
Summary: Download manga and anime lists from MyAnimeList.
Home-page: https://github.com/SanteriHetekivi/myanimelist_downloader
Author: Santeri Hetekivi
Author-email: development@hetekivi.com
Project-URL: Bug Tracker, https://github.com/SanteriHetekivi/myanimelist_downloader/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# MyAnimelist Manga and Anime -list downloader

Download manga or anime list from MyAnimeList.

## Install
Install [myanimelist_downloader](https://pypi.org/project/myanimelist-downloader/)-package from The Python Package Index (PyPI).
```shell
pip install myanimelist_downloader
```

## Usage
```shell
usage: myanimelist_downloader [-h] [-u USERNAME] [-p PASSWORD] [-d DOWNLOAD_DIRECTORY] [-e ENV_FILE] [-a | --anime | --no-anime] [-m | --manga | --no-manga]

options:
  -h, --help            show this help message and exit
  -u USERNAME, --username USERNAME
                        MyAnimeList username
  -p PASSWORD, --password PASSWORD
                        MyAnimeList password
  -d DOWNLOAD_DIRECTORY, --download-directory DOWNLOAD_DIRECTORY
                        Download directory
  -e ENV_FILE, --env-file ENV_FILE
                        Enviroment file
  -a, --anime, --no-anime
                        Download mangalist. (default: False)
  -m, --manga, --no-manga
                        Download mangalist. (default: False)
```

## Enviroment
| ENV                            | Description                                                                              |
| ------------------------------ | ---------------------------------------------------------------------------------------- |
| MAL_USERNAME                   | MyAnimeList username.                                                                    |
| MAL_PASSWORD                   | MyAnimeList password.                                                                    |
| SELENIUM_NO_SANDBOX            | Run Chrome without sandbox.                                                              |
| SELENIUM_DISABLE_DEV_SHM_USAGE | Disable Chrome shared memory space.                                                      |
| SELENIUM_DISABLE_EXTENSIONS    | Disable Chrome extensions.                                                               |
| SELENIUM_DISABLE_GPU           | Disable Graphics Processing Unit with Chrome.                                            |
| SELENIUM_DEBUG                 | Turn on/off Selenium debuging.When true, run Chrome with head and do not close on error. |
| SELENIUM_TIMEOUT               | Number of seconds before Selenium times out. (Default: 10)                               |
