From 8828de79a0bb29fc5af1d22f8b6919abc4242b74 Mon Sep 17 00:00:00 2001 From: RaitaroHikami <19552720+RaitaroH@users.noreply.github.com> Date: Fri, 6 Mar 2020 23:26:09 +0200 Subject: [PATCH] =?UTF-8?q?Reorder=20of=20supported=20sites=20in=20readme?= =?UTF-8?q?=20and=20animepahe=20as=20default=20pr=E2=80=A6=20(#279)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * reordered supported sites * docs: replace 9anime links with animepahe * default config: animepahe 1080p if 720p is a fallback quality it only makes sense for 1080p to be the default * docs: config example changed to animepahe 1080p --- README.md | 16 +++++++--------- anime_downloader/config.py | 9 +++++---- docs/usage/config.rst | 8 ++++---- docs/usage/dl.rst | 12 ++++++------ 4 files changed, 22 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 9193720..9c68917 100644 --- a/README.md +++ b/README.md @@ -44,17 +44,15 @@ Yeah. Me too! That's why this tool exists. ## Supported Sites -- 9anime -- twist.moe -- KissAnime -- KissCartoon -- Gogoanime -- AnimePahe +- Animepahe - Anistream -- Animeflv (Latin) -- itsaturday.com -- Animefreak - Animeflix +- Animefreak +- Gogoanime +- itsaturday +- Animeflv +- Kissanime - requires Node.js +- Kisscartoon - requires Node.js ## Installation diff --git a/anime_downloader/config.py b/anime_downloader/config.py index e18f1c7..a1c5c52 100644 --- a/anime_downloader/config.py +++ b/anime_downloader/config.py @@ -12,17 +12,18 @@ DEFAULT_CONFIG = { 'player': None, 'skip_download': False, 'download_dir': '.', - 'quality': '720p', + 'quality': '1080p', 'fallback_qualities': ['720p', '480p', '360p'], 'force_download': False, 'file_format': '{anime_title}/{anime_title}_{ep_no}', - 'provider': 'twist.moe', + 'provider': 'animepahe', 'external_downloader': '', }, 'watch': { - 'quality': '720p', + 'quality': '1080p', + 'fallback_qualities': ['720p', '480p', '360p'], 'log_level': 'INFO', - 'provider': '9anime', + 'provider': 'animepahe', }, "siteconfig": { "nineanime": { diff --git a/docs/usage/config.rst b/docs/usage/config.rst index 9601e1c..1ea6606 100644 --- a/docs/usage/config.rst +++ b/docs/usage/config.rst @@ -28,8 +28,8 @@ The default config file is given below. "file_format": "{anime_title}/{anime_title}_{ep_no}", "force_download": false, "player": null, - "provider": "9anime", - "quality": "720p", + "provider": "animepahe", + "quality": "1080p", "skip_download": false, "url": false }, @@ -47,8 +47,8 @@ The default config file is given below. }, "watch": { "log_level": "INFO", - "provider": "9anime", - "quality": "720p" + "provider": "animepahe", + "quality": "1080p" } } diff --git a/docs/usage/dl.rst b/docs/usage/dl.rst index f684885..0089022 100644 --- a/docs/usage/dl.rst +++ b/docs/usage/dl.rst @@ -20,7 +20,7 @@ To search on kissanime, .. code:: bash - anime dl 'code geass' --provider kissanime + anime dl 'code geass' --provider animepahe Run ``anime dl --help`` for help text on ``dl`` subcommand. @@ -31,29 +31,29 @@ Download directly :: - anime dl 'https://www7.9anime.is/watch/fullmetal-alchemist-brotherhood.0r7/j69y93' + anime dl 'https://animepahe.com/anime/fullmetal-alchemist-brotherhood' - To download Fullmetal Alchemist: Brotherhood episode 1 :: - anime dl 'https://www7.9anime.is/watch/fullmetal-alchemist-brotherhood.0r7/j69y93' --episodes 1 + anime dl 'https://animepahe.com/anime/fullmetal-alchemist-brotherhood' --episodes 1 - To download Fullmetal Alchemist: Brotherhood episode 1 to 20 :: - anime dl 'https://www7.9anime.is/watch/fullmetal-alchemist-brotherhood.0r7/j69y93' --episodes 1:21 + anime dl 'https://animepahe.com/anime/fullmetal-alchemist-brotherhood' --episodes 1:21 - To get stream url of Fullmetal Alchemist: Brotherhood episode 1. :: - anime dl 'https://www7.9anime.is/watch/fullmetal-alchemist-brotherhood.0r7/j69y93' --url --episodes 1 + anime dl 'https://animepahe.com/anime/fullmetal-alchemist-brotherhood' --url --episodes 1 - To play using vlc. (On windows use path to exe) :: - anime dl 'https://www7.9anime.is/watch/fullmetal-alchemist-brotherhood.0r7/j69y93' --play vlc --episodes 1 + anime dl 'https://animepahe.com/anime/fullmetal-alchemist-brotherhood' --play vlc --episodes 1