2022-10-07 17:50:42 +03:00
|
|
|
from bs4 import BeautifulSoup
|
2022-02-16 18:13:44 +03:00
|
|
|
|
2022-10-07 17:50:42 +03:00
|
|
|
def table_parser(soup: BeautifulSoup, output):
|
2022-02-16 18:13:44 +03:00
|
|
|
#Date parser
|
|
|
|
date = (soup.find("main").findAll('span', style="color:black"))[1]
|
|
|
|
output["date"] = date.text.replace(u'\xa0', u'')
|
|
|
|
|
|
|
|
|
|
|
|
#Replaces parser
|
|
|
|
replaces = soup.findAll('tr')
|
|
|
|
for data in replaces:
|
|
|
|
|
|
|
|
text = (
|
|
|
|
data.find("td", valign="top")
|
|
|
|
.find("span", style="color:black")
|
|
|
|
.text.replace(u'\xa0', u'')
|
|
|
|
)
|
|
|
|
group = (
|
|
|
|
data.find("span", style="color:black")
|
|
|
|
.text.replace(" ", "").replace(u'\xa0', u''))
|
|
|
|
output["data"][group] = text
|
|
|
|
|
|
|
|
return output
|
|
|
|
|
|
|
|
|
2022-10-07 17:50:42 +03:00
|
|
|
def image_parser(soup: BeautifulSoup):
|
2022-10-28 13:57:30 +03:00
|
|
|
main = soup.find("main")
|
2022-11-13 11:26:40 +03:00
|
|
|
image = main.select('img[src$=".png"]')
|
|
|
|
output = image[0]['src']
|
2022-02-16 18:13:44 +03:00
|
|
|
|
|
|
|
return output
|