python 생 성 실행 가능 한 exe 제어 Microsip 자동 번호 작성 및 전화 걸 기 기능
우선 파일 을 선택 하고,
txt 형식 파일 을 선택 하고 핸드폰 번호 형식 을 한 줄 씩 선택 하 십시오.아래 와 같다
클릭 하여 다음 전 화 를 걸 면 자동 으로 자동 전 화 를 입력 합 니 다.
코드:
import tkinter
import win32gui
import win32con
from tkinter import filedialog
import tkinter.messagebox
import os
import time
def next_phone(phone):
win = win32gui.FindWindow('MicroSIP',None)
tid = win32gui.FindWindowEx(win,None,'#32770',None)
tid = win32gui.FindWindowEx(tid,None,'ComboBox',None)
tid = win32gui.FindWindowEx(tid,None,'Edit',None)
win32gui.SendMessage(tid, win32con.WM_SETTEXT, None, phone)
win32gui.PostMessage(tid,win32con.WM_KEYDOWN,win32con.VK_RETURN,0)
def openfile():
sfname = filedialog.askopenfilename(title=' txt ', filetypes=[ ('All Files', '*')])
return sfname
class MicroSIP:
def __init__(self):
self.c_window()
def c_window(self):
self.win = tkinter.Tk()
self.win.geometry("300x280")
self.win.resizable(width=False, height=False)
self.win.protocol('WM_DELETE_WINDOW', self.customized_function)
self.total = 0
self.used = 0
self.res = []
self.Button1 = tkinter.Button(self.win, text=" ", command=self.helloCallBack)
self.Button_next = tkinter.Button(self.win, text=" ", command=self.next)
self.label1 = tkinter.Label(self.win, text="",)
self.label2 = tkinter.Label(self.win, text=" :", bg="yellow")
self.label3 = tkinter.Label(self.win, text=" :", bg="red")
self.label2_2 = tkinter.Label(self.win, text=self.total, )
self.label3_3 = tkinter.Label(self.win, text=self.used, )
# label4 = tkinter.Label(win, text=" ", bg="green")
self.Button1.grid(row=0, column=0)
self.label1.grid(row=0, column=1)
self.label2.grid(row=2, column=0)
self.label2_2.grid(row=2, column=1)
self.label3.grid(row=3, column=0)
self.label3_3.grid(row=3, column=1)
self.Button_next.grid(row=5, column=2)
col_count, row_count = self.win.grid_size()
for col in range(col_count):
self.win.grid_columnconfigure(col, minsize=40)
for row in range(row_count):
self.win.grid_rowconfigure(row, minsize=40)
self.win.mainloop()
def next(self):
if self.res:
phone = self.res.pop()
self.used+=1
self.label3_3['text'] = self.used
next_phone(phone.strip())
else:
res = tkinter.messagebox.showerror(title=' !', message=' ! !')
def helloCallBack(self):
# print("Hello Python", "Hello Runoob")
file_name = openfile()
if file_name:
print(file_name)
self.label1['text']=file_name.split('/')[-1]
with open(file_name, 'r', encoding='utf-8')as f:
self.res = [x.replace('
', '') for x in f.readlines()]
self.total = len(self.res)
self.label2_2['text']=str(len(self.res))
else:
res = tkinter.messagebox.showerror(title=' !', message=' ! !')
def customized_function(self):
result = tkinter.messagebox.askyesno(title = ' ',message=' ? , , !')
if result:
if self.total==self.used:
pass
else:
name = time.strftime("%Y_%m_%d_%H_%M_%S_", time.localtime())+" _"+str(self.total-self.used)
with open(name+'.txt','w',encoding='utf-8')as f:
for i in self.res:
f.write(i+'
')
self.win.destroy()
if __name__ == '__main__':
MicroSIP()
비교적 간단하게 썼 습 니 다.스스로 최적화 할 수 있 습 니 다.pywin 32 라 이브 러 리 를 설치 해 야 합 니 다.포장 하면 exe 파일 을 만 들 수 있 습 니 다.
pyinstaller 라 이브 러 리 를 설치 해 야 합 니 다.
명령 pyinstaller-F-w xxx.py
내 가 만 든 exe 는 다운로드 할 수 있 습 니 다:
링크:https://pan.baidu.com/s/1IAx0pgr4ze2jYusisQBXIA
추출 코드:a3s 2
이상 은 python 생 성 실행 가능 한 exe 제어 Microsip 자동 으로 번 호 를 작성 하고 전 화 를 거 는 상세 한 내용 입 니 다.python 생 성 실행 가능 한 exe 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.