개발자료/Python(18)
-
[pypi] chromedriver-autoinstaller
Selenium 개발시 Chrome가 계속 자동 업데이트되어 ChromeDriver 파일을 다운받아야 할때가 많은데 이 모듈을 사용하면 자동으로 다운로드 처리되니 좋을것 같다. ● Install pip install chromedriver-autoinstaller ● Usage import chromedriver_autoinstaller chromedriver_autoinstaller.install()
2021.12.08 -
[pypi] random-user-agent
스크래핑, 크롤링시 서버를 속이기위해 여러가지 UserAgent가 필요할때가 있다. 이때 사용하면 좋을것 같다. ● Install pip install random-user-agent ● Usage from random_user_agent.user_agent import UserAgent from random_user_agent.params import SoftwareName, OperatingSystem # you can also import SoftwareEngine, HardwareType, SoftwareType, Popularity from random_user_agent.params # you can also set number of user agents required by providing..
2021.11.18 -
fake-useragent
# 설치 # https://pypi.org/project/fake-useragent/ pip install fake-useragent # 사용가능 from fake_useragent import UserAgent ua = UserAgent() ua.ie # Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US); ua.msie # Mozilla/5.0 (compatible; MSIE 10.0; Macintosh; Intel Mac OS X 10_7_3; Trident/6.0)' ua['Internet Explorer'] # Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.4; Inf..
2021.04.29 -
경로(Path), 파일명, 확장자 조작 함수
# import, 변수초기화 import os org_path = "/path1/path2/file.jpg" # 파일 추출 file = os.path.basename(org_path) print("파일명 추출", file) # 파일명 추출 file.jpg # 경로 추출 path = os.path.dirname(org_path) print("경로 추출", path) # 경로 추출 /path1/path2 # 경로와 파일명 추출 path, file = os.path.split(org_path) #- 경로와 파일명을 분리 print("경로와 파일명 추출", path, file) # 경로와 파일명 추출 /path1/path2 file.jpg # 파일명과 확장자 추출 filename, fileext = os.pat..
2021.03.12 -
Selenium
# Chrome 알림(Notification) 뜨지 않게 하기 chrome_options = Options() chrome_options.add_argument("--disable-notifications") ## or prefs = {"profile.default_content_setting_values.notifications" : 2} ## 1:allow notification, 2:block notification chrome_options.add_experimental_option("prefs",prefs) ## 첫번째(하나의) Element 반환 find_element_by_id find_element_by_name find_element_by_xpath find_element_by_link_..
2020.12.14 -
pyserial - Python Serial Port Extension
## 설치 pip install pyserial ## 프로젝트 사이트 pypi.org/project/pyserial/ pyserial Python Serial Port Extension pypi.org
2020.10.15