-
-
Save Lowell130/d1f59d56cfba717f902714b9205e7146 to your computer and use it in GitHub Desktop.
Meta tags and BeautifulSoup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
soup = BeautifulSoup(response) | |
metatags = soup.find_all('meta',attrs={'name':'generator'}) | |
for tag in metatags: | |
print tag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment