0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PythonでNPBのチームデータが取りたい。(pandas)

0
Last updated at Posted at 2018-05-06

日本プロ野球選手会の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)

実は最終的にやりたい事とは少し違う。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?