Find the Nth Tag On a WebPage with Beautiful Soup
Python
Import and Export
In this example we get the first h2 tag from a wikipedia page using Beautiful Soup. To do this we first find all the h2 tags as a list called h2_tags and then simply get the tags in the first position of the list.
1| import requests 2| from bs4 import BeautifulSoup 3| 4| response = requests.get('https://en.wikipedia.org/wiki/FTSE_100_Index') 5| parser = BeautifulSoup(response.content, 'html.parser') 6| 7| h2_tags = parser.find_all('h2') 8| 9| # get the first h2 tag 10| print(h2_tags[0])
2
Creating a Pandas DataFrame from a Python Generator
Python
Import and Export
2
2
2
Reading CSV Files from Amazon S3 into Pandas Dataframes
Python
Import and Export
1
Sklearn Iris Dataset - Load The Iris Dataset & Split Into Features & Target
Python
Import and Export
1
Using Selectors in Beautiful Soup to Scrape Using Classes & IDs
Python
Import and Export
1
1
1
1