def parse(html):
soup = BeautifulSoup(html,'html.parser')
title = soup.find('h1')
image1 = soup.find_all('a', class_='highslide')[0]
image2 = soup.find_all('a', class_='highslide')[1]
post = []
post.append ({
'title': title.text,
'image1': image1.get('href'),
'image2': image2.get('href'),
})
print(post)