-
-
Notifications
You must be signed in to change notification settings - Fork 294
/
secondlifetranslations.py
64 lines (45 loc) · 2.16 KB
/
secondlifetranslations.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
# -*- coding: utf-8 -*-
import logging
from lncrawl.core.crawler import Crawler
logger = logging.getLogger(__name__)
clear = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
crypt = "rhbndjzvqkiexcwsfpogytumalVUQXWSAZKBJNTLEDGIRHCPFOMY"
decrypt_table = dict(zip(clear, crypt))
def decrypt_string(crypted_string):
return ''.join(map(lambda c: decrypt_table.get(c, c),
list(crypted_string)))
class SecondLifeTransCrawler(Crawler):
base_url = 'https://secondlifetranslations.com/'
def initialize(self):
self.cleaner.bad_css.update(['.jmbl-disclaimer'])
def read_novel_info(self):
soup = self.get_soup(self.novel_url)
self.novel_title = (soup.select_one('meta[property="og:title"]')
['content'])
possible_cover = soup.select_one('meta[property="og:image"]')
if possible_cover:
self.novel_cover = self.absolute_url(possible_cover['content'])
logger.info('Novel cover: %s', self.novel_cover)
novelcontent = soup.select_one(".novelcontent")
if novelcontent:
author_strong = novelcontent.find('strong', string='Author: ')
if author_strong and author_strong.next_sibling:
self.novel_author = author_strong.next_sibling.text
logger.info('Novel author: %s', self.novel_author)
volumes = soup.select('button.accordion')
for vol_id, volume in enumerate(volumes, 1):
self.volumes.append({'id': vol_id, 'title': volume.text})
for a in volume.next_sibling.select('div > div > a'):
chap_id = 1 + len(self.chapters)
self.chapters.append({
'id': chap_id,
'volume': vol_id,
'title': a.text.strip(),
'url': self.absolute_url(a['href']),
})
def download_chapter_body(self, chapter):
soup = self.get_soup(chapter['url'])
contents = soup.select_one('.entry-content.clr')
for span in contents.select('span.jmbl'):
span.string = decrypt_string(span.text)
return self.cleaner.extract_contents(contents)