Last active
October 3, 2020 11:44
-
-
Save Abhayparashar31/37e9059cbaa0a688ec4db5992788ba12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
import requests | |
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'} | |
def google(query): | |
query = query.replace(" ","+") | |
try: | |
url = f'https://www.google.com/search?q={query}&oq={query}&aqs=chrome..69i57j46j69i59j35i39j0j46j0l2.4948j0j7&sourceid=chrome&ie=UTF-8' | |
res = requests.get(url,headers=headers) | |
soup = BeautifulSoup(res.text,'html.parser') | |
except: | |
print("Make sure you have a internet connection") | |
try: | |
try: | |
ans = soup.select('.RqBzHd')[0].getText().strip() | |
except: | |
try: | |
title=soup.select('.AZCkJd')[0].getText().strip() | |
try: | |
ans=soup.select('.e24Kjd')[0].getText().strip() | |
except: | |
ans="" | |
ans=f'{title}\n{ans}' | |
except: | |
try: | |
ans=soup.select('.hgKElc')[0].getText().strip() | |
except: | |
ans=soup.select('.kno-rdesc span')[0].getText().strip() | |
except: | |
ans = "can't find on google" | |
return ans | |
result = google(str(input("Query\n"))) | |
print(result) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment