日本プロ野球選手会のHPからチーム名を取得する。
python3、windowsの環境。
tableタグのあるリストを取得してprintで表示する。
getTeam.py
import pandas as pd
url = ('http://jpbpa.net/register/')
fetched_dataframes = pd.io.html.read_html(url)
print(fetched_dataframes)
実は最終的にやりたい事とは少し違う。
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
日本プロ野球選手会のHPからチーム名を取得する。
python3、windowsの環境。
tableタグのあるリストを取得してprintで表示する。
import pandas as pd
url = ('http://jpbpa.net/register/')
fetched_dataframes = pd.io.html.read_html(url)
print(fetched_dataframes)
実は最終的にやりたい事とは少し違う。
Register as a new user and use Qiita more conveniently
Go to list of users who liked