mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
2702bf9400
* Enable ruff S113 rule * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
39 lines
926 B
Python
39 lines
926 B
Python
import webbrowser
|
|
from sys import argv
|
|
from urllib.parse import parse_qs, quote
|
|
|
|
import requests
|
|
from bs4 import BeautifulSoup
|
|
from fake_useragent import UserAgent
|
|
|
|
if __name__ == "__main__":
|
|
query = "%20".join(argv[1:]) if len(argv) > 1 else quote(str(input("Search: ")))
|
|
|
|
print("Googling.....")
|
|
|
|
url = f"https://www.google.com/search?q={query}&num=100"
|
|
|
|
res = requests.get(
|
|
url,
|
|
headers={"User-Agent": str(UserAgent().random)},
|
|
timeout=10,
|
|
)
|
|
|
|
try:
|
|
link = (
|
|
BeautifulSoup(res.text, "html.parser")
|
|
.find("div", attrs={"class": "yuRUbf"})
|
|
.find("a")
|
|
.get("href")
|
|
)
|
|
|
|
except AttributeError:
|
|
link = parse_qs(
|
|
BeautifulSoup(res.text, "html.parser")
|
|
.find("div", attrs={"class": "kCrYT"})
|
|
.find("a")
|
|
.get("href")
|
|
)["url"][0]
|
|
|
|
webbrowser.open(link)
|