자유게시판 - 거상 갤러리

ㅇㅇ

ㅇㅇ 비회원 125.249 3년 전 조회 6265

import pyautogui as pag
import os
import time
import keyboard as key
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *

from gersangAlarm.gersang_alarm_UI import Ui_MainWindow
image_list_1 = []

class check_image_fuction(QMainWindow,Ui_MainWindow):
   def __init__(self):
       super().__init__()
       self.setupUi(self)
       self.worker_a = worker_a()
       self.show()

   def start(self):

       self.worker_a.start()
       pass

# Get list of all files in current directory
path1 = "./icon1/"
directory1 = os.listdir(path1)


# Find files that end with .png or .jpg and add to image_list
for file in directory1:
   if file.endswith('.png') or file.endswith('.jpg'):
       image_list_1.append(file)

# Thread A
class worker_a(QThread):
   def run(self):
       try:
           while True:
               # Loop through list to find all the images
               for image in image_list_1:
                   var = pag.locateAllOnScreen(path1 + image, confidence=0.98)
                   var = list(var)
                   time.sleep(0.5)
                   if len(var) != 0:
                       key.press('alt')
                       time.sleep(0.05)
                       key.press('1')
                       time.sleep(0.05)
                       key.release('1')
                       time.sleep(0.05)
                       key.release('alt')
               del var
               time.sleep(0.5)
       except KeyboardInterrupt:
           print('\n')


app = QApplication([])
main_dialog = check_image_fuction() 
QApplication.processEvents()
app.exit(app.exec_())

댓글 0
댓글이 아직 없네요. 첫 번째로 댓글을 남겨주세요!
chong13
8399
3년 전
chong13
6787
3년 전
ㄱㄱ
106.101
6467
3년 전
ㅇㅇ
125.249
6224
3년 전
ㅇㅇ
125.249
6613
3년 전
신구가문제네
121.150
7710
3년 전
ㅅㅁ소액캐시삼
14.38
6192
3년 전
먹슬
210.99
6872
3년 전
으잉
121.154
7120
3년 전
ㅇㅇ
125.249
6266
3년 전
123
39.7
6011
3년 전
다망해라
112.160
9246
3년 전
쑥쑥이
223.62
6929
3년 전
방댕이
112.144
8215
3년 전
방댕이
112.144
22710
3년 전
암상인꾼난이형
5392
3년 전
멜로디레인
6181
3년 전
헤헤벤져
6314
3년 전
슈슈슉
15277
3년 전
이끄요잇
5346
3년 전
uhs1005
5765
3년 전
동숟가락
5118
3년 전
멜로디레인
9051
3년 전
거린준비
5358
3년 전
perfume
16412
3년 전
전설
106.101
12284
3년 전
육의전이용자
222.96
5528
3년 전
사토
112.144
5680
3년 전
거린이일상
7765
3년 전
거붕
5968
3년 전
chong13
3년 전 조회 8399
chong13
3년 전 조회 6787
ㄱㄱ
비회원 106.101 3년 전 조회 6467
ㅇㅇ
비회원 125.249 3년 전 조회 6224
ㅇㅇ
비회원 125.249 3년 전 조회 6613
신구가문제네
비회원 121.150 3년 전 조회 7710
ㅅㅁ소액캐시삼
비회원 14.38 3년 전 조회 6192
먹슬
비회원 210.99 3년 전 조회 6872
으잉
비회원 121.154 3년 전 조회 7120
ㅇㅇ
비회원 125.249 3년 전 조회 6266
123
비회원 39.7 3년 전 조회 6011
다망해라
비회원 112.160 3년 전 조회 9246
쑥쑥이
비회원 223.62 3년 전 조회 6929
방댕이
비회원 112.144 3년 전 조회 8215
방댕이
비회원 112.144 3년 전 조회 22710
암상인꾼난이형
3년 전 조회 5392
멜로디레인
3년 전 조회 6181
헤헤벤져
3년 전 조회 6314
슈슈슉
3년 전 조회 15277
이끄요잇
3년 전 조회 5346
uhs1005
3년 전 조회 5765
동숟가락
3년 전 조회 5118
멜로디레인
3년 전 조회 9051
거린준비
3년 전 조회 5358
perfume
3년 전 조회 16412
전설
비회원 106.101 3년 전 조회 12284
육의전이용자
비회원 222.96 3년 전 조회 5528
사토
비회원 112.144 3년 전 조회 5680
거린이일상
3년 전 조회 7765
거붕
3년 전 조회 5968