forked from fipl-hse/2022-2-level-ctlr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrapper.py
165 lines (131 loc) · 3.19 KB
/
scrapper.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
"""
Crawler implementation
"""
from typing import Pattern, Union
class Config:
"""
Unpacks and validates configurations
"""
def __init__(self, path_to_config: Path) -> None:
"""
Initializes an instance of the Config class
"""
pass
def _extract_config_content(self) -> ConfigDTO:
"""
Returns config values
"""
pass
def _validate_config_content(self) -> None:
"""
Ensure configuration parameters
are not corrupt
"""
pass
def get_seed_urls(self) -> list[str]:
"""
Retrieve seed urls
"""
pass
def get_num_articles(self) -> int:
"""
Retrieve total number of articles to scrape
"""
pass
def get_headers(self) -> dict[str, str]:
"""
Retrieve headers to use during requesting
"""
pass
def get_encoding(self) -> str:
"""
Retrieve encoding to use during parsing
"""
pass
def get_timeout(self) -> int:
"""
Retrieve number of seconds to wait for response
"""
pass
def get_verify_certificate(self) -> bool:
"""
Retrieve whether to verify certificate
"""
pass
def get_headless_mode(self) -> bool:
"""
Retrieve whether to use headless mode
"""
pass
def make_request(url: str, config: Config) -> requests.models.Response:
"""
Delivers a response from a request
with given configuration
"""
pass
class Crawler:
"""
Crawler implementation
"""
url_pattern: Union[Pattern, str]
def __init__(self, config: Config) -> None:
"""
Initializes an instance of the Crawler class
"""
pass
def _extract_url(self, article_bs: BeautifulSoup) -> str:
"""
Finds and retrieves URL from HTML
"""
pass
def find_articles(self) -> None:
"""
Finds articles
"""
pass
def get_search_urls(self) -> list:
"""
Returns seed_urls param
"""
pass
class HTMLParser:
"""
ArticleParser implementation
"""
def __init__(self, full_url: str, article_id: int, config: Config) -> None:
"""
Initializes an instance of the HTMLParser class
"""
pass
def _fill_article_with_text(self, article_soup: BeautifulSoup) -> None:
"""
Finds text of article
"""
pass
def _fill_article_with_meta_information(self, article_soup: BeautifulSoup) -> None:
"""
Finds meta information of article
"""
pass
def unify_date_format(self, date_str: str) -> datetime.datetime:
"""
Unifies date format
"""
pass
def parse(self) -> Union[Article, bool, list]:
"""
Parses each article
"""
pass
def prepare_environment(base_path: Union[Path, str]) -> None:
"""
Creates ASSETS_PATH folder if no created and removes existing folder
"""
pass
def main() -> None:
"""
Entrypoint for scrapper module
"""
pass
if __name__ == "__main__":
main()