https://diamondrp.ru/
def get_html(url):
response = urllib.request.urlopen(url)
return response.read()
def diamond_parse(html):
online = []
soup = BeautifulSoup(html, "html.parser")
table = soup.find('div', class_ = 'container-fluid fleex')
table1 = soup.find_all('div', class_ = 'servers')
for row in table1.find_all('div'):
cols = row.find_all('div', class_='size')
for onl in cols[0].find_all('span'):
online.append(onl.text)
return online
print(diamond_parse(get_html('https://diamondrp.ru')))
А куда ты этот код собираешься впилить?
https://paste.ofcode.org/ELmgfes4wrMu223Dpk2h42
Вот еще вариант через xpath: https://pastebin.com/dw4EEZSf
Обсуждают сегодня