编码初学者。 UnboundLocalError:分配前已引用局部变量'df'

问题描述 投票:1回答:1

编码初学者,不知道该练习该怎么办。

“您可以使用此模板获取DJIA会员的调整后收盘价。首先,您应该在线下载DJIA成员列表。然后,您读入成员并在main函数中编写一个for循环以获取所需的数据。提示,使用get_EOD_data函数中的“ tickers”参数”

import requests
import pandas as pd
from pandas.compat import StringIO
import numpy as np
import datetime as dt
from dateutil.relativedelta import relativedelta

def get_EOD_data(api_token='5cb671b0b4a790.35526238', session = None, tickers = 'AXP', start_date = dt.datetime(2018,1,1), end_date = dt.datetime(2018,12,31)):
    symbols = tickers
    if session is None:
        session = requests.Session()


    url = 'https://eodhistoricaldata.com/api/eod/%s.US'
    params = {"api_token": api_token, "from": start_date, "to": end_date}
    r = session.get(url, params = params)
    if r.status_code == requests.codes.ok:

        # Use the parameters index_col and usecols to control which columns you want to scrape
        df = pd.read_csv(StringIO(r.text), skipfooter = 1, parse_dates = [0], engine = 'python', na_values=['nan'])

    df.fillna(method = 'ffill', inplace = True)
    df.fillna(method = 'bfill', inplace = True)
    return df

def main():
    # Add parameters of the function get_EOD_data to control the data you want to scrape
    df_data = get_EOD_data()
    print(df_data)

if __name__ == '__main__':
    main()

Traceback (most recent call last):
  File "/Users/katewang/Desktop/Test/scrape_data.py", line 32, in <module>
    main()
  File "/Users/katewang/Desktop/Test/scrape_data.py", line 28, in main
    df_data = get_EOD_data()
  File "/Users/katewang/Desktop/Test/scrape_data.py", line 22, in get_EOD_data
    df.fillna(method = 'ffill', inplace = True)
UnboundLocalError: local variable 'df' referenced before assignment
python
1个回答
0
投票

在此部分中]

. . . . 

if r.status_code == requests.codes.ok:

    # Use the parameters index_col and usecols to control which columns you want to scrape
    df = pd.read_csv(StringIO(r.text), skipfooter = 1, parse_dates = [0], engine = 'python', na_values=['nan'])

df.fillna(method = 'ffill', inplace = True)
. . . 

您会注意到变量df的赋值在条件语句中,有可能评估为假,因为r.status_coderequests.codes.ok不相等

© www.soinside.com 2019 - 2024. All rights reserved.