IT/Python(3)
-
Python 한글 오류 에러 문제
파이썬의 경우 기본적인 설정 상태에서, 코드내에 한글이 있는 경우 다음과 같은 오류가 발생합니다. SyntaxError: Non-ASCII Character 관련된 에러라고 부릅니다. 코드 내에 한글을 파이썬이 읽어들이지 못해서 발생되는 에러라고 보시면 됩니다. SyntaxError: Non-ASCII character '\xec' in file D:\app\views.py on line 41, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details 해결방법은 간단합니다. 파이썬 코드 맨위에 한글 인코딩을 하도록 명령해주면 됩니다. # -*- coding: utf-8 -*- # parser.py import reques..
2017.08.11 -
Python 웹크롤러 ChromeDriver 실행시 반응이 없을 때 처리 방법
파이썬으로 웹 크롤러 제작시, Chromedriver가 예외처리 없이 잘 실행되는데, 반응이 없이 아래와 같이 실행되는 경우가 있다. Traceback (most recent call last): File "chromedriver_test.py", line 4, in driver = webdriver.Chrome() File "/home/hodle/.local/lib/python3.5/site-packages/selenium/webdriver/chrome/webdriver.py", line 69, in __init__ desired_capabilities=desired_capabilities) File "/home/hodle/.local/lib/python3.5/site-packages/selenium/..
2017.08.11 -
Python 웹 크롤러 ChromeDriver 예외 처리(권한)
browser = webdriver.Chrome() 실행시, 다음과 같이 권한 오류가 발생하는 경우.... Traceback (most recent call last): File "/home/hodle/.local/lib/python3.5/site-packages/selenium/webdriver/common/service.py", line 74, in start stdout=self.log_file, stderr=self.log_file) File "/usr/lib/python3.5/subprocess.py", line 947, in __init__ restore_signals, start_new_session) File "/usr/lib/python3.5/subprocess.py", line 1551..
2017.08.11