From one's virtual env directory:
source bin/activate
It's nice to scrape within an interactive python session; so launch one via:
python
Find all h3
elements with style="text-align: center;"
:
soup.find_all('h3', style="text-align: center;")
soup.get_text()