-
-
Notifications
You must be signed in to change notification settings - Fork 300
/
readlightnovelcc.py
90 lines (72 loc) · 2.98 KB
/
readlightnovelcc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# -*- coding: utf-8 -*-
import logging
from lncrawl.core.crawler import Crawler
logger = logging.getLogger(__name__)
search_url = "https://www.readlightnovel.cc/search/%s/1"
class ReadlightnovelCcCrawler(Crawler):
base_url = [
"https://www.readlightnovel.cc/",
"https://m.readlightnovel.cc/",
]
def initialize(self):
self.home_url = "https://www.readlightnovel.cc"
def search_novel(self, query):
"""Gets a list of {title, url} matching the given query"""
# response = self.submit_form(search_url, data=dict(keyword=query, t=1))
# soup = self.make_soup(response)
# soup = self.get_soup(search_url,query)
url = search_url % query.lower()
soup = self.get_soup(url)
results = []
for li in soup.select("ul.result-list li"):
a = li.select_one("a.book-name")["href"]
author = li.select_one("a.book-name font").text
title = li.select_one("a.book-name").text.replace(author, "")
results.append(
{
"title": title,
"url": self.absolute_url(a),
"info": author,
}
)
return results
def read_novel_info(self):
url = self.novel_url.replace("https://m", "https://www")
soup = self.get_soup(url)
possible_title = soup.select_one("div.book-name")
assert possible_title, "No novel title"
self.novel_title = possible_title.text.strip()
logger.info("Novel title: %s", self.novel_title)
self.novel_author = soup.select_one("div.author span.name").text.strip()
logger.info("Novel author: %s", self.novel_author)
possible_image = soup.select_one("div.book-img img")
if possible_image:
self.novel_cover = self.absolute_url(possible_image["src"])
logger.info("Novel cover: %s", self.novel_cover)
# Extract volume-wise chapter entries
chapters = soup.select("ul.chapter-list a")
for a in chapters:
chap_id = len(self.chapters) + 1
vol_id = 1 + len(self.chapters) // 100
if len(self.volumes) < vol_id:
self.volumes.append({"id": vol_id})
self.chapters.append(
{
"id": chap_id,
"volume": vol_id,
"url": self.absolute_url(a["href"]),
"title": a.select_one("p.chapter-name").text.strip()
or ("Chapter %d" % chap_id),
}
)
def download_chapter_body(self, chapter):
soup = self.get_soup(chapter["url"])
chapter["title"] = soup.select_one("h1.chapter-title").text.strip()
self.cleaner.bad_text_regex = set(
[
r"^translat(ed by|or)",
r"(volume|chapter) .?\d+",
]
)
body_parts = soup.select_one("div.chapter-entity")
return self.cleaner.extract_contents(body_parts)