728x90
반응형

2021/05 7

네이버 주식 일별 시세 pandas read_html() ValueError: No tables found 오류

네이버 주식 일별 시세 pandas read_html() 오류 --------------------------------------------------------------------------------------------------- import pandas as pd # 네이버 금융 주식 일별시세(예, LG전자[066570]) url = "https://finance.naver.com/item/sise_day.nhn?code=066570" df = pd.read_html(url) --------------------------------------------------------------------------------------------------- => 오류 발생 : ValueError:..

개발/Python 2021.05.21

Google Colab (Colaboratory) python library module install, upgrade, uninstall

Google Colab (Colaboratory) python library install 1. Python module install/upgrade/uninstall 1-1. Module install !pip install (module name) ex, !pip install scikit-learn 1-2. Module upgrade !pip install --upgrade (module name) ex, !pip install --upgrade scikit-learn 1-3. Module uninstall !pip uninstall (module name) ex, !pip uninstall scikit-learn 2. Program install, upgrade, remove 2.1 Program..

개발/Python 2021.05.01
728x90
반응형