readcomiconline domain switch

Quick search and replace for:-

ReadComicOnlineTo ->ReadComicOnlineli
Readcomiconline.to -> Readcomiconline.li
master
Adam Blundell 2021-04-15 12:07:25 +01:00
parent 8ddaab8ecc
commit 339b665fcb
10 changed files with 52 additions and 50 deletions

View File

@ -26,5 +26,5 @@ comic_dl\sites\omgBeauPeep.py
comic_dl\sites\rawSenManga.py
comic_dl\sites\readComicBooksOnline.py
comic_dl\sites\readComicsWebsite.py
comic_dl\sites\readcomicOnlineto.py
comic_dl\sites\readcomicOnlineli.py
comic_dl\sites\stripUtopia.py

View File

@ -206,7 +206,7 @@ Currently, the script supports these arguments :
-comic-info, --comic-info Lists all the information about the given comic (argument can be either comic id or the exact comic name).
[ Ex : -comic-info "Deadpool Classic" ] or [ Ex : -comic-info 3865 ]
--update Updates the comic database for the given argument.
[ Ex: --update "Deadpool Classic" ] or [ Ex: --update "https://readcomiconline.to/Comic/Deadpool-Classic" ]
[ Ex: --update "Deadpool Classic" ] or [ Ex: --update "https://readcomiconline.li/Comic/Deadpool-Classic" ]
```
## Language Codes:

View File

@ -5,7 +5,8 @@
~* [GoManga](http://gomanga.co/)~
~* [Batoto](http://bato.to/)~
* [Comic Naver](http://comic.naver.com/index.nhn)
* [Readcomiconline.to](http://readcomiconline.to/)
* [Readcomiconline.li](http://readcomiconline.li/)
~* [Readcomiconline.to](http://readcomiconline.to/)~
* [mangahere.co](http://mangahere.co/)
* [raw.senmanga](http://raw.senmanga.com/)
* [omgbeaupeep.com](http://www.omgbeaupeep.com/)

View File

@ -1,8 +1,8 @@
{
"download_directory": "dire",
"comics": {
"http://readcomiconline.to/Comic/Deadpool-2016": {
"url": "http://readcomiconline.to/Comic/Deadpool-2016",
"http://readcomiconline.li/Comic/Deadpool-2016": {
"url": "http://readcomiconline.li/Comic/Deadpool-2016",
"username": "None",
"comic_language": "0",
"password": "None",

View File

@ -7,7 +7,7 @@ except ImportError:
from urlparse import urlparse
import logging
from sites import foolSlide
from sites import readcomicOnlineto
from sites import readcomicOnlineli
from sites import comicNaver
from sites import mangaHere
from sites import rawSenManga
@ -92,7 +92,7 @@ class Honcho(object):
chapter_range=chapter_range, conversion=kwargs.get("conversion"),
keep_files=kwargs.get("keep_files"))
return 0
elif domain in ["www.readcomiconline.to", "readcomiconline.to"]:
elif domain in ["www.readcomiconline.li", "readcomiconline.li"]:
readcomicOnlineto.ReadComicOnlineTo(manga_url=comic_url, logger=logging,
current_directory=current_directory, sorting_order=sorting,
log_flag=log_flag, download_directory=download_directory,

View File

@ -10,7 +10,7 @@ from datetime import date
class RCOUpdater():
def __init__ (self, link=None, name=None):
self.BASE = "https://readcomiconline.to/Comic/"
self.BASE = "https://readcomiconline.li/Comic/"
self.link = link
if name:

View File

@ -7,7 +7,7 @@ import os
import logging
class ReadComicOnlineTo(object):
class ReadComicOnlineLi(object):
def __init__(self, manga_url, download_directory, chapter_range, **kwargs):
current_directory = kwargs.get("current_directory")
@ -101,7 +101,7 @@ class ReadComicOnlineTo(object):
for a in x:
all_links.append(str(a['href']).strip())
"""Readcomiconline.to shows the chapters in the Descending order. The 1st chapter is at the bottom, hence, at
"""Readcomiconline.li shows the chapters in the Descending order. The 1st chapter is at the bottom, hence, at
the end of the list. So, we'll reverse the list, to perform the ranging functionality properly.
This is a fix for issues like #74.
"""
@ -137,7 +137,7 @@ class ReadComicOnlineTo(object):
if str(sorting).lower() in ['new', 'desc', 'descending', 'latest']:
for chap_link in all_links:
chap_link = "http://readcomiconline.to" + chap_link
chap_link = "http://readcomiconline.li" + chap_link
try:
self.single_chapter(comic_url=chap_link, comic_name=comic_name, download_directory=download_directory,
conversion=conversion, keep_files=keep_files)

View File

@ -5,7 +5,8 @@
~* [GoManga](http://gomanga.co/)~
~* [Batoto](http://bato.to/)~
* [Comic Naver](http://comic.naver.com/index.nhn)
* [Readcomiconline.to](http://readcomiconline.to/)
* [Readcomiconline.li](http://readcomiconline.li/)
~* [Readcomiconline.to](http://readcomiconline.to/)~
* [mangahere.co](http://mangahere.co/)
* [raw.senmanga](http://raw.senmanga.com/)
* [omgbeaupeep.com](http://www.omgbeaupeep.com/)

View File

@ -25,7 +25,7 @@
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="text-center" style="padding-top: 5%;padding-bottom: 5%;">
<h1 style="color: #ffffff;"><a href="http://readcomiconline.to/">Readcomicsonline.to</a></h1>
<h1 style="color: #ffffff;"><a href="http://readcomiconline.li/">Readcomicsonline.li</a></h1>
</div>
</div>
<div class="carousel-item">

View File

@ -46,7 +46,7 @@ setup(
},
license="MIT Licence",
zip_safe=False,
keywords = ['comic-dl', 'cli', 'comic downloader','manga downloader','mangafox','batoto','kissmanga','readcomiconline.to'],
keywords = ['comic-dl', 'cli', 'comic downloader','manga downloader','mangafox','batoto','kissmanga','readcomiconline.li'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',