Trouver à côté survenant balise et son texte joint avec une Belle Soupe

Je suis en train d'analyser le texte entre la balise <blockquote>. Quand je tape soup.blockquote.get_text().

J'obtiens le résultat que je veux pour la première survenant blockquote dans le fichier HTML. Comment puis-je trouver la prochaine et séquentielle <blockquote> balise dans le fichier? Peut-être que je suis juste fatigué et ne le trouve pas dans la documentation.

Exemple de fichier HTML:

<html>
<head>header
</head>
<blockquote>I can get this text
</blockquote>
<p>eiaoiefj</p>
<blockquote>trying to capture this next
</blockquote>
<p></p><strong>do not capture this</strong>
<blockquote>
capture this too but separately after "capture this next"
</blockquote>
</html>

le simple code python:

from bs4 import BeautifulSoup

html_doc = open("example.html")
soup = BeautifulSoup(html_doc)
print.(soup.blockquote.get_text())
# how to get the next blockquote???
InformationsquelleAutor PSeUdocode | 2014-02-17