Python(6)
-
Python 시큐어코딩 가이드(2022년_개정본)
📚 출처 📌 KISA : https://www.kisa.or.kr/
2024.02.17 -
[pypi] chromedriver-autoinstaller
Selenium 개발시 Chrome가 계속 자동 업데이트되어 ChromeDriver 파일을 다운받아야 할때가 많은데 이 모듈을 사용하면 자동으로 다운로드 처리되니 좋을것 같다. ● Install pip install chromedriver-autoinstaller ● Usage import chromedriver_autoinstaller chromedriver_autoinstaller.install()
2021.12.08 -
경로(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 -
String - 문자열
# Trim : 앞뒤 공백 제거 str = " String " str.lstrip() # 왼쪽 공백 제거 "String " str.rstrip() # 오른쪽 공백 제거 " String" str.strip() # 양쪽 공백 제거 "String" # starswith : 문자열 시작 비교 str = "start center end" if str.startswith("start"): print("has start") # endswith : 문자열 끝 비교 str = "start center end" if str.endswith("end"): print("has end")
2020.09.18