I am practicing web scrapping and I would like to know how to refer to the div element of the page that I am scrapping that contains the following property
<div style="color:#000000; padding-left:55px; padding-bottom:1px; background
image:url(http://caribbeancinemas.com/VIP_bg.fw.png);
background-repeat:no-repeat;background-position: right; min-height:127px;">
When I want to refer to him in my code he does not recognize it, my code for the moment is this
import bs4 as bs
import urllib.request
sauce = urllib.request.urlopen('http://caribbeancinemas.com/theater/downtown-center/').read()
soup = bs.BeautifulSoup(sauce, "html.parser")
style = "color:#000000; padding-left:55px; padding-bottom:1px; background
image:url(http://caribbeancinemas.com/VIP_bg.fw.png);
background-repeat:no-repeat;background-position: right; min-height:127px;"
movies = soup.find('div', attrs={'class','column three-fourth column_column'})
titles = []
for movie in soup.find_all('div', attrs={'class', 'column three-fourth'}):
title = movie.b.text
print (title)
for div in movie.find_all('div', style=style):
print (div.text)