didier/functions/scraping.py

53 lines
1.3 KiB
Python
Raw Normal View History

from requests import get
from urllib.parse import urlencode
from bs4 import BeautifulSoup
# TODO add Football requests in here as well
def google_search(query):
"""
Function to get Google search results
"""
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'
}
query = urlencode({"q": query})
# Get 20 results in case some of them are None
resp = get("https://www.google.com/search?{}&num=20&hl=en".format(query), headers=headers)
if resp.status_code != 200:
return None, resp.status_code
bs = BeautifulSoup(resp.text, "html.parser")
def getContent(element):
2021-01-24 13:14:44 +01:00
"""
Function to find links & titles in the HTML of a <div> element
"""
link = element.find("a", href=True)
title = element.find("h3")
2021-01-24 13:14:44 +01:00
if link is None or title is None:
return None
sp = title.find("span")
if sp is None:
return None
return link["href"], sp.text
2021-01-24 13:14:44 +01:00
divs = bs.find_all("div", attrs={"class": "g"})
return list(getContent(d) for d in divs), 200
2021-01-24 22:00:24 +01:00
def getMatchweek():
"""
Parses the current JPL matchweek out of Sporza's site
"""
pass