File size: 1,739 Bytes
6cf0820
 
 
e448a74
f9c42cf
6cf0820
 
 
 
 
 
 
 
f9c42cf
6cf0820
8bf48d8
e448a74
 
6cf0820
e448a74
 
 
6cf0820
 
 
 
 
 
 
e448a74
f9c42cf
 
 
 
 
e448a74
6cf0820
8bf48d8
6cf0820
8bf48d8
e448a74
8bf48d8
6cf0820
 
 
 
e448a74
 
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
import requests
from pathlib import Path
from utils.enver import enver
from utils.logger import logger
from networks.filepath_converter import QueryToFilepathConverter


class GoogleSearcher:
    # https://github.com/Nv7-GitHub/googlesearch/blob/master/googlesearch/__init__.py
    def __init__(self):
        self.url = "https://www.google.com/search"
        self.enver = enver
        self.enver.set_envs(proxies=True)
        self.filepath_converter = QueryToFilepathConverter()

    def send_request(self, result_num=10, safe=False):
        logger.note(f"Searching: [{self.query}]")
        self.request_response = requests.get(
            url=self.url,
            headers={
                "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 Edg/111.0.1661.62",
            },
            params={
                "q": self.query,
                "num": result_num,
            },
            proxies=self.enver.requests_proxies,
        )

    def save_response(self):
        self.output_path = self.filepath_converter.convert(self.query)
        if not self.output_path.exists():
            self.output_path.parent.mkdir(parents=True, exist_ok=True)
        logger.note(f"Saving to: [{self.output_path}]")
        with open(self.output_path, "wb") as wf:
            wf.write(self.request_response.content)

    def search(self, query, result_num=10, safe=False):
        self.query = query
        self.send_request(result_num=result_num, safe=safe)
        self.save_response()
        return self.output_path


if __name__ == "__main__":
    searcher = GoogleSearcher()
    # searcher.search("python教程")
    searcher.search("python tutorials")