python生成可执行exe控制Microsip自动填写号码并拨打
生活随笔
收集整理的這篇文章主要介紹了
python生成可执行exe控制Microsip自动填写号码并拨打
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
控制的前提是已經運行Microsip.exe
??
首先選擇文件,
選擇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 = 0self.used = 0self.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+=1self.label3_3['text'] = self.usednext_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('\n', '') 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:passelse: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+'\n')self.win.destroy()if __name__ == '__main__':MicroSIP()寫的比較簡單,可以自己優化一下,需要安裝pywin32庫
打包一下,就可以生成 exe文件??
需要安裝pyinstaller 庫
命令 pyinstaller -F -w xxx.py
我生成好的exe可供下載:
鏈接:https://pan.baidu.com/s/1xEQ6V_N_ZBPRcYk-FfO14A?
提取碼:6hr9?
也可掃碼下載:
有問題可以進群
qq群二維碼:
?
總結
以上是生活随笔為你收集整理的python生成可执行exe控制Microsip自动填写号码并拨打的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 扒站神器
- 下一篇: websocket python爬虫_p