-
-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy pathwuxiaworldsite.py
63 lines (48 loc) · 2.26 KB
/
wuxiaworldsite.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
# -*- coding: utf-8 -*-
import logging
from bs4.element import Tag
from lncrawl.core.crawler import Crawler
logger = logging.getLogger(__name__)
full_chapter_list_url = "https://wuxiaworldsite.co/get-full-list.ajax?id=%s"
class WuxiaSiteCo(Crawler):
base_url = "https://wuxiaworldsite.co/"
def read_novel_info(self):
logger.debug("Visiting %s", self.novel_url)
soup = self.get_soup(self.novel_url)
possible_title = soup.select_one(".read-item h1")
assert isinstance(possible_title, Tag)
self.novel_title = possible_title.text.strip()
logger.info("Novel title: %s", self.novel_title)
possible_image = soup.select_one(".read-item .img-read img")
if isinstance(possible_image, Tag):
self.novel_cover = self.absolute_url(possible_image["src"])
logger.info("Novel cover: %s", self.novel_cover)
possible_author = soup.select_one(".read-item .content-reading p:first-child")
if isinstance(possible_author, Tag):
self.novel_author = possible_author.text.strip()
logger.info("Novel author: %s", self.novel_author)
possible_id = soup.select_one(".story-introduction__toggler .show-more-list")
assert isinstance(possible_id, Tag)
self.novel_id = possible_id["data-id"]
logger.info("Novel Id: %s", self.novel_id)
soup = self.get_soup(full_chapter_list_url % self.novel_id)
for a in soup.select("a"):
chap_id = len(self.chapters) + 1
vol_id = len(self.chapters) // 100 + 1
if len(self.chapters) % 100 == 0:
self.volumes.append({"id": vol_id})
self.chapters.append(
{
"id": chap_id,
"volume": vol_id,
"title": "Chapter %d" % chap_id,
"url": self.absolute_url(a["href"]),
}
)
def download_chapter_body(self, chapter):
soup = self.get_soup(chapter["url"])
contents = soup.select_one("div.content-story")
assert isinstance(contents, Tag)
for bad in contents.select('p[style="display: none"], script, ins'):
bad.extract()
return "\n".join([str(p) for p in contents.select("p") if p.text.strip()])