SMALL python2 파이썬(python) - exe 실행파일 만들기 & Error 처리 pyinstaller 설치 : pip install pyinstaller exe file 만들기 : pyinstaller --onefile filename.py exe file 만들기 2 : chromedriver.exe 사용시, 합쳐서 exe로 만들기 pyinstaller --onefile --add-binary "chromedriver.exe";"." file.py Error case 1 : ImportError: cannot import name 'PackagePath' 설치 파일 확인 importlib_metadata 버전이 낮음 - install 처리. pip list pip install -U --user importlib-metadata Error Case 2 : PermissionError.. 2021. 7. 9. 파이썬(python) - win32com 사용하여, excel file 읽기, 저장, csv로 저장하기 Win32com 모듈 불러 오기 import win32com.client Import를 통해서 win32com.client 부분을 불러오시기 바랍니다. 엑셀 연결하고 파일 불러 오기 excel=win32com.client.Dispatch("Excel.Application") workbook=excel.Workbooks.Open("fileName") sheet=workbook.Sheets("sheetName") 엑셀에서 데이터 읽어오기 (row(행), column(열)은 숫자로 표시) read_data=sheet.Cells(row,column).Value 엑셀에 데이터 값 쓰기 sheet.Cells(row,column).Value = "Happy" 엑셀 화면에 표시하기 excel.Visible = True.. 2021. 7. 7. 이전 1 다음 LIST