-
-
Notifications
You must be signed in to change notification settings - Fork 293
/
freefullnovel.py
95 lines (74 loc) · 3.06 KB
/
freefullnovel.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
# -*- coding: utf-8 -*-
import logging
from lncrawl.core.crawler import Crawler
logger = logging.getLogger(__name__)
class FreeFullNovelCrawler(Crawler):
has_manga = False
has_mtl = False
base_url = ["https://freefullnovel.com/"]
search_url = "%s?s=%s&post_type=wp-manga&author=&artist=&release="
def initialize(self) -> None:
self.cleaner.bad_tags.update(["h3"])
def search_novel(self, query):
query = query.lower().replace(" ", "+")
soup = self.get_soup(self.search_url % (self.home_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")
for span in possible_title.select("span"):
span.extract()
self.novel_title = possible_title.text.strip()
logger.info("Novel title: %s", self.novel_title)
img_src = soup.select_one(".summary_image a img")
if img_src:
self.novel_cover = self.absolute_url(img_src["src"])
logger.info("Novel cover: %s", self.novel_cover)
self.novel_author = " ".join(
[
a.text.strip()
for a in soup.select('.author-content a[href*="manga-author"]')
]
)
logger.info("%s", self.novel_author)
clean_novel_url = self.novel_url.split("?")[0].strip("/")
response = self.submit_form(f"{clean_novel_url}/ajax/chapters/")
soup = self.make_soup(response)
for a in reversed(soup.select(".wp-manga-chapter a")):
chap_id = len(self.chapters) + 1
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": a.text.strip(),
"url": self.absolute_url(a["href"]),
}
)
def download_chapter_body(self, chapter):
logger.info("Visiting %s", chapter["url"])
soup = self.get_soup(chapter["url"])
contents = soup.select_one("div.reading-content")
for img in contents.findAll("img"):
if img.has_attr("data-src"):
src_url = img["data-src"]
parent = img.parent
img.extract()
new_tag = soup.new_tag("img", src=src_url)
parent.append(new_tag)
return self.cleaner.extract_contents(contents)