mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
08c8bb5ad5
* Deal with maps Try with the search term "pizza" to see why this was done in #1932 * fixup! Format Python code with psf/black push * Update armstrong_numbers.py * updating DIRECTORY.md * Update crawl_google_results.py Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
26 lines
799 B
Python
26 lines
799 B
Python
import sys
|
|
import webbrowser
|
|
|
|
from bs4 import BeautifulSoup
|
|
from fake_useragent import UserAgent
|
|
import requests
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("Googling.....")
|
|
url = "https://www.google.com/search?q=" + " ".join(sys.argv[1:])
|
|
res = requests.get(url, headers={"UserAgent": UserAgent().random})
|
|
# res.raise_for_status()
|
|
with open("project1a.html", "wb") as out_file: # only for knowing the class
|
|
for data in res.iter_content(10000):
|
|
out_file.write(data)
|
|
soup = BeautifulSoup(res.text, "html.parser")
|
|
links = list(soup.select(".eZt8xd"))[:5]
|
|
|
|
print(len(links))
|
|
for link in links:
|
|
if link.text == "Maps":
|
|
webbrowser.open(link.get("href"))
|
|
else:
|
|
webbrowser.open(f"http://google.com{link.get('href')}")
|