Convertendo tabela html em um dataframe do pandas

Eu tenho tentado importar uma tabela html de um site e convertê-la em pandasDataFrame. Este é o meu código:

import pandas as pd
table = pd.read_html("http://www.sharesansar.com/c/today-share-price.html")
dfs = pd.DataFrame(data = table)
print dfs 

Apenas mostra o seguinte:

0       S.No                                     ...

Mas se eu fizer;

for df in dfs:
    print df

Ele gera a tabela ..

Como posso usarpd.Dataframe raspar a mesa?

questionAnswers(1)

yourAnswerToTheQuestion