pythonのBeautifulSoupをつかって、繰り返し現れる情報から、その階層化にある情報を個別に取り出す Python

pythonのBeautifulSoupをつかって、繰り返し現れる情報から、その階層化にある情報を個別に取り出す例
class_= article という階層下にタイトルと、リンク先と、時間が現れるのでそれを同時に取り出す


以下で取得できた
<div class= syntaxhighlighter >url = 対象URL
response = urllib.request.urlopen(url)
rss = response.read().decode( utf-8 )
soup = BeautifulSoup(rss html.parser )

for v in soup.find_all(class_= article ) :
print( [ + v.find(class_= title ).get_text().strip()+ ] )
print( [ + v.find( time ).get( datetime )+ ] )
print( [ + v.find( a ).get( href ) + ] )
</div>