import requests
from bs4 import BeautifulSoup
response = requests.get('https://www.roseltorg.ru/procedure/0114500000820000578')
soup = BeautifulSoup(response.text,"html.parser")
table = soup.find_all('table',class_='lot-item__data-table')[1]
is currently = table.find_all('p',class_='data-table__info')
inn = is currently[0].text
name = is currently[1].text
address = is currently[2].text
phone = is currently[3].text
mail = is currently[4].text
place = is currently[5].text
print(f"'INN: {inn}
Org name: {name}
Address: {address}
Phone: {phone}
E-mail: {mail}
Location: {place}
"')
Find more questions by tags Beautiful SoupPython