Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

python convert html table to text

import pandas as pd
url = r'https://en.wikipedia.org/wiki/List_of_S%26P_500_companies'
tables = pd.read_html(url) # Returns list of all tables on page
sp500_table = tables[0] # Select table of interest
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #convert #html #table #text
ADD COMMENT
Topic
Name
6+6 =