AttributeError: 'DataFrame' object has no attribute 'append'
Closed this issue · 2 comments
bom1215 commented
market = 'KOSPI'
date = datetime.today() - timedelta(1) #전일 기준
year_ago_date = date - relativedelta(years=1)
delist_stocks = stock.get_market_price_change(year_ago_date,date,market=market, delist=True)
위와 같이 코드를 입력하였더니 아래와 같은 에러가 발생했습니다.
AttributeError: 'DataFrame' object has no attribute 'append'
bom1215 commented
알아보니 판다스 2.0 (April 3, 2023)부터 append가 없어졌다고 합니다.
아래는 해당 내용 링크입니다.
mr-yoo commented
merge 했습니다. 감사합니다.