#забираем содержание страницы
def get_page_data(html):
	soup = BeautifulSoup(html, 'lxml')

	try:
		name = soup.find('h1').text.strip()
	except:
		name = ''

	try:
		article = soup.find_all('span').text.strip()
	except:
		article = ''

	try:
		komplekt = soup.find_all('strong').text.strip()
	except:
		komplekt = ''

	try:
		composition = soup.find_all('p').text.strip()
	except:
		composition = ''

	try:
		characteristics = soup.find('ul').find_all('li').text.strip()
	except:
		characteristics = ''


	data = {'name': name,
			'article': article,
			'komplekt': komplekt,
			'composition': composition,
			'characteristics': characteristics}
	print(data)
	return data