You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
df = df.append(pd.read_html(requests.get(pg_url,)
라는 문구가 뜨는데요, 정상적으로 데이터는 db에 저장되는것 같은데, 해석해보면 추후 pandas 에서는 frame.append라는 함수가 적용되지 않는 함수라는 뜻 같습니다.
모듈 변경이 필요할까요?
The text was updated successfully, but these errors were encountered:
DBUpdaterEX.py 를 실행할 때
FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
df = df.append(pd.read_html(requests.get(pg_url,)
라는 문구가 뜨는데요, 정상적으로 데이터는 db에 저장되는것 같은데, 해석해보면 추후 pandas 에서는 frame.append라는 함수가 적용되지 않는 함수라는 뜻 같습니다.
모듈 변경이 필요할까요?
The text was updated successfully, but these errors were encountered: