-
-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy pathwordexcerpt.py
110 lines (98 loc) · 4.11 KB
/
wordexcerpt.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# -*- coding: utf-8 -*-
import logging
from lncrawl.core.crawler import Crawler
logger = logging.getLogger(__name__)
search_url = "https://wordexcerpt.com/?s=%s&post_type=wp-manga"
class WordExcerptCrawler(Crawler):
base_url = ["https://wordexcerpt.com/", "https://wordexcerpt.org/"]
def search_novel(self, query):
query = query.lower().replace(" ", "+")
soup = self.get_soup(search_url % query)
results = []
for tab in soup.select(".c-tabs-item__content"):
a = tab.select_one(".post-title h3 a")
latest = tab.select_one(".latest-chap .chapter a").text
votes = tab.select_one(".rating .total_votes").text
results.append(
{
"title": a.text.strip(),
"url": self.absolute_url(a["href"]),
"info": "%s | Rating: %s" % (latest, votes),
}
)
return results
def read_novel_info(self):
logger.debug("Visiting %s", self.novel_url)
soup = self.get_soup(self.novel_url)
possible_title = soup.select_one(".post-title h1, .c-manga-title h1")
assert possible_title, "No novel title"
self.novel_title = possible_title.text.strip()
logger.info("Novel title: %s", self.novel_title)
possible_img = soup.select_one(".summary_image img")
if possible_img:
if possible_img.has_attr("data-src"):
self.novel_cover = self.absolute_url(possible_img["data-src"])
if possible_img.has_attr("src"):
self.novel_cover = self.absolute_url(possible_img["src"])
logger.info("Novel cover: %s", self.novel_cover)
possible_author = soup.select_one(
'.author-content a, .profile-manga a[href*="/author/"]'
)
if possible_author:
self.novel_author = possible_author.text
logger.info("Novel author: %s", self.novel_author)
if soup.select("ul.sub-chap"):
volume_list = soup.select("ul.main li.parent")
last_vol = -1
volume = {
"id": 0,
"title": "Volume 1",
}
for item in volume_list:
vol = volume.copy()
vol["id"] += 1
vol_title = "Volume " + str(vol["id"])
volume = vol
chapter_list = item.select("li.wp-manga-chapter a")
chapter_list.reverse()
for chapter in chapter_list:
chap_id = len(self.chapters) + 1
self.chapters.append(
{
"id": chap_id,
"volume": volume["id"],
"url": chapter["href"],
"title": chapter.text.strip(),
}
)
if last_vol != volume["id"]:
last_vol = volume["id"]
self.volumes.append(volume)
else:
chapter_list = soup.select("li.wp-manga-chapter a")
chapter_list.reverse()
for chapter in chapter_list:
chap_id = len(self.chapters) + 1
if len(self.chapters) % 100 == 0:
vol_id = chap_id // 100 + 1
vol_title = "Volume " + str(vol_id)
self.volumes.append(
{
"id": vol_id,
"title": vol_title,
}
)
self.chapters.append(
{
"id": chap_id,
"volume": vol_id,
"url": chapter["href"],
"title": chapter.text.strip(),
}
)
def download_chapter_body(self, chapter):
soup = self.get_soup(chapter["url"])
# logger.debug(soup.title.string)
contents = soup.select("div.text-left p")
body = [str(p) for p in contents if p.text.strip()]
return "<p>" + "</p><p>".join(body) + "</p>"