# Webからデータを取得するために、requestsをインポートします。
import requests
# CSVデータのために、StringIOをつかいます。
from io import StringIO
# データのURLです。
url = "http://elections.huffingtonpost.com/pollster/2012-general-election-romney-vs-obama.csv"
# requestsをつかってデータをtextとして取得します。
source = requests.get(url).text
# StringIOを使ってpandasのエラーを防ぎます。
poll_data = StringIO(source)
poll_df = pd.read_csv(poll_data)
More than 3 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme