-
-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy pathceunovel.py
67 lines (51 loc) · 2.02 KB
/
ceunovel.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
# -*- coding: utf-8 -*-
import logging
from lncrawl.core.crawler import Crawler
logger = logging.getLogger(__name__)
class CeuNovelCrawler(Crawler):
base_url = [
'https://www.ceunovel.com/',
]
def initialize(self) -> None:
self.cleaner.bad_tags.update(['div', 'h1', 'h2'])
def read_novel_info(self):
soup = self.get_soup(self.novel_url)
possible_title = soup.select_one('.crumbs > span:nth-of-type(2)')
if possible_title:
self.novel_title = possible_title.get_text()
logger.info('Novel title: %s', self.novel_title)
for p in soup.select('div:not([class], [id]) > p'):
text = p.text.strip()
if 'Author/Translator' in text:
self.novel_author = text.split(':')[1]
break
logger.info('Novel author: %s', self.novel_author)
prev_vol_id = None
has_volumes = False
for a in reversed(soup.select("div > li > a")):
chap_id = 1 + len(self.chapters)
title = a.text.strip()
for title_data in title.split(' - '):
if 'Volume' in title_data:
has_volumes = True
vol_id = int(title_data.split()[1])
if prev_vol_id != vol_id:
prev_vol_id = vol_id
self.volumes.append({'id': vol_id})
break
if not has_volumes:
vol_id = 1 + len(self.chapters) // 100
if chap_id % 100 == 1:
self.volumes.append({'id': vol_id})
self.chapters.append(
{
"id": chap_id,
"volume": vol_id,
"title": title,
"url": self.absolute_url(a['href']),
}
)
def download_chapter_body(self, chapter):
soup = self.get_soup(chapter['url'])
contents = soup.select_one('#contentatt')
return self.cleaner.extract_contents(contents)