-
-
Notifications
You must be signed in to change notification settings - Fork 300
/
crescentmoon.py
52 lines (40 loc) · 1.71 KB
/
crescentmoon.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
# -*- coding: utf-8 -*-
import logging
from lncrawl.core.crawler import Crawler
logger = logging.getLogger(__name__)
class CrescentMoonCrawler(Crawler):
base_url = "https://crescentmoon.blog/"
def read_novel_info(self):
logger.debug("Visiting %s", self.novel_url)
soup = self.get_soup(self.novel_url)
self.novel_title = soup.find("h1", {"class": "entry-title"}).text.strip()
logger.info("Novel title: %s", self.novel_title)
self.novel_cover = self.absolute_url(
soup.select_one("div.entry-content p a")["href"]
)
logger.info("Novel cover: %s", self.novel_cover)
self.novel_author = soup.select("div.entry-content p")[2].text.strip()
logger.info("Novel author: %s", self.novel_author)
toc = None
a = soup.select("div.entry-content p")
for idx, item in enumerate(a):
if "table of contents" in item.text.strip().lower():
toc = a[idx + 1]
assert toc, "No table of contents"
for x in toc.find_all("a"):
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(x["href"]),
"title": x.text.strip() or ("Chapter %d" % chap_id),
}
)
def download_chapter_body(self, chapter):
soup = self.get_soup(chapter["url"])
contents = soup.select("div.entry-content")
return self.cleaner.extract_contents(contents)