Можно, попробовать так:
post = []
soup = BeautifulSoup(html,'html.parser')
title = soup.find('h1')
image_links = soup.find_all('div', {'class': 'text'})
post.append ('title')
for link in image_links:
link = link.find('a').get('href')
post.append('link')