본문 바로가기

전체 글

(720)
개발/Python
python selenium url 페이지 존재 여부 검사 Python에서 Selenium을 사용하여 웹 페이지의 존재 여부를 검사하고, 페이지가 존재하지 않으면 오류 메시지를 출력하며, 페이지가 존재하면 "페이지 존재"를 출력하는 스크립트를 작성할 수 있습니다. 다음은 예제 코드입니다.from selenium import webdriverfrom selenium.common.exceptions import WebDriverException, NoSuchElementExceptionfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.common.by import By# 웹드라이버 서비스 경로를 설정합니다.service = Service('chromedriver') # 크롬 드.. 2024.11.20
개발/Python
python 윈도우 작업표시줄 높이와 가로크기를 알수있는 코드 Python을 이용해 윈도우 작업표시줄의 높이와 가로 크기를 알아내려면, ctypes와 win32api 라이브러리를 사용할 수 있습니다. 아래는 윈도우 작업표시줄의 높이와 너비를 가져오는 코드입니다.import ctypesfrom win32api import GetMonitorInfo, MonitorFromPoint# 화면 크기와 작업 표시줄 영역 가져오기monitor_info = GetMonitorInfo(MonitorFromPoint((0,0)))work_area = monitor_info['Work']screen_area = monitor_info['Monitor']# 작업 표시줄의 높이와 너비 계산taskbar_height = screen_area[3] - work_area[3]taskbar_wi.. 2024.11.11
개발/Python
python 엑셀 윈도우창 크기및 위치 조절하는 코드 Python을 사용하여 엑셀 윈도우 창의 크기와 위치를 조절하려면 win32com.client 라이브러리를 활용할 수 있습니다. 이 코드를 통해 엑셀 애플리케이션 창의 크기와 위치를 조정할 수 있습니다.아래는 엑셀 창을 열고, 위치와 크기를 조정하는 예제 코드입니다:import win32com.client as win32import time# 엑셀 애플리케이션 실행excel = win32.Dispatch("Excel.Application")excel.Visible = True # 엑셀 창을 보이게 설정# 새 워크북 추가workbook = excel.Workbooks.Add()# 엑셀 창 크기 및 위치 설정# Left와 Top은 창의 위치, Width와 Height는 창의 크기excel.Top = 100.. 2024.11.11
개발/Python
[selenium] chrome driver 팝업 비허용 def chrome_driver_dev(): options = webdriver.ChromeOptions() # options.add_argument('--headless') # options.add_argument('--no-sandbox') # options.add_argument("--start-maximized") options.add_argument('--disable-dev-shm-usage') options.add_argument("--disable-notifications") options.add_experimental_option('excludeSwitches', ['disable-popup-blocking']) service = Service(.. 2024.08.29
개발/MariaDB
[ mariadb ] Failed to load slave replication state from table mysql.gtid_slave_pos: 1017: Can't find file: './mysql/' (errno: 2 "No such file or directory") log-bin = /var/log/mariadb/mariadb-bin log-bin-index = /var/log/mariadb/mariadb-bin.index binlog_format = mixed from my config does, in fact, remove the 'warning'. 2023.08.22
개발/linux
Firewalld 구성(Directories, firewallld.conf) Directories /usr/lib/firewalld ICMP TYPES, Service, Zone에 대해 Firewalld에서 제공하는 구성 설정 파일이 있으며 이에 대한 추가적인 설정은 패키지가 따로 제공되거나 파일을 생성해서 사용가능합니다. /usr/firewalld 시스템 또는 사용자 구성 파일이 존재하는 곳이며 시스템 관리자 또는 Firewalld 구성 인터페이스를 사용해 사용자가 직접 정의 하거나 생성이 가능합니다. 만약 별다른 구성이 없으면 기본설정(firewalld.conf)을 사용하게 됩니다. Runtime VS Permanent Runtime 실제로 적용고 사용되고있는 구성이며 서비스가 시작되면 영구 구성을 런타임 구성으로 가져와 사용하게 됩니다. 서비스 시작뿐만 아니라 서비스 rel.. 2023.08.21