Python模擬鍵盤輸入自動登錄TGP
更新時間:2020年11月27日 17:09:38 作者:DamonGuo
這篇文章主要介紹了Python模擬鍵盤輸入自動登錄TGP的示例代碼,幫助大家更好的理解和學習python,感興趣的朋友可以了解下
#-*- coding: utf-8 -*- import win32api,win32gui, win32con import os import time #os.startfile('D:\\Program Files\\Tencent\\TGP\\tgp_daemon.exe') #time.sleep(5) label = u"騰訊游戲平臺" #根據(jù)窗口名獲取窗口句柄, h = win32gui.FindWindow('Edit','') #Ex = win32gui.FindWindowEx(h,None,None,None) #print(h) #print(Ex) win32gui.SetForegroundWindow(h) #根據(jù)窗口句柄使窗口位于焦點位置 time.sleep(3) UserNum = "your id" PassWord = "your password" lowercase = dict(zip(range(97,123),[[x,0] for x in range(65,91)])) #小寫字母對應的ascii碼為97~122,對應的鍵盤值為65~90 uppercase = dict(zip(range(65,91),[[x,1] for x in range(65,91)])) #大寫字母對應的ascii碼為65~91,對應的鍵盤值為小寫字母的鍵盤值加shit number = dict(zip(range(48,58), [[x,0] for x in range(48,58)])) #print number #0~9數(shù)字對應的asicc編碼為48~57, 對應的鍵盤值為48~58 symbol01 = {32: [32, 0], 33: [49, 1], 34: [222, 1], 35: [51, 1], 36: [52, 1], 37: [53, 1], 38: [55, 1], 39: [222, 0], 40: [57, 1], 41: [48, 1], 42: [56, 1], 43: [187, 1], 44: [188, 0], 45: [189, 0], 46: [190, 0], 47: [191, 0]} symbol02 = {64: [50, 1], 58: [186, 1], 59: [186, 0], 60: [188, 1], 61: [187, 0], 62: [190, 1], 63: [191, 1]} symbol03 = {96: [192, 0], 91: [219, 0], 92: [220, 1], 93: [221, 0], 94: [54, 1], 95: [189, 1]} symbol04 = {123: [219, 1], 124: [220, 1], 125: [221, 1], 126: [192, 1]} #print symbol04 passworddict = {} passworddict = dict(lowercase.items()+uppercase.items()+number.items()+symbol01.items()+symbol02.items()+symbol03.items()+symbol04.items()) #print passworddict for i in range(0,1):#模擬輸入tab鍵,選中賬號輸入框 win32api.keybd_event(9,0,0,0) win32api.keybd_event(9,0,win32con.KEYEVENTF_KEYUP,0) time.sleep(0.2) time.sleep(0.5) for i in range(0,12):#刪除輸入框中的字符 win32api.keybd_event(8,0,0,0) win32api.keybd_event(8,0,win32con.KEYEVENTF_KEYUP,0) time.sleep(0.2) for i in range(0,len(UserNum)): key = ord(UserNum[i]) skey = int(passworddict[key][0]) if passworddict[key][1] == 1: win32api.keybd_event(16,0,0,0) #獲取賬號中對應字符中的對應ascii編碼 win32api.keybd_event(skey,0,0,0) win32api.keybd_event(16,0,win32con.KEYEVENTF_KEYUP,0) win32api.keybd_event(skey,0,win32con.KEYEVENTF_KEYUP,0) else: #win32api.keybd_event(16,0,0,0) #獲取賬號中對應字符中的對應ascii編碼 win32api.keybd_event(skey,0,0,0) #win32api.keybd_event(16,0,win32con.KEYEVENTF_KEYUP,0) win32api.keybd_event(skey,0,win32con.KEYEVENTF_KEYUP,0) time.sleep(0.2) #模擬賬號中每個字符的輸入,每次輸入后睡眠0.2s time.sleep(0.5) win32api.keybd_event(9,0,0,0) win32api.keybd_event(9,0,win32con.KEYEVENTF_KEYUP,0) #再次模擬tab鍵輸入,選中密碼輸入框 time.sleep(0.5) for i in range(0,len(PassWord)): key = ord(PassWord[i]) skey = int(passworddict[key][0]) if passworddict[key][1] == 1: win32api.keybd_event(16,0,0,0) #獲取賬號中對應字符中的對應ascii編碼 win32api.keybd_event(skey,0,0,0) win32api.keybd_event(16,0,win32con.KEYEVENTF_KEYUP,0) win32api.keybd_event(skey,0,win32con.KEYEVENTF_KEYUP,0) else: #win32api.keybd_event(16,0,0,0) #獲取賬號中對應字符中的對應ascii編碼 win32api.keybd_event(skey,0,0,0) #win32api.keybd_event(16,0,win32con.KEYEVENTF_KEYUP,0) win32api.keybd_event(skey,0,win32con.KEYEVENTF_KEYUP,0) time.sleep(0.2) ''' if ord(PassWord[i])>=97 and ord(PassWord[i])<=122: key = ord(PassWord[i])-32 elif ord(PassWord[i]) == 64: win32api.keybd_event(16,0,0,0) win32api.keybd_event(50,0,0,0) win32api.keybd_event(16,0,win32con.KEYEVENTF_KEYUP,0) win32api.keybd_event(50,0,win32con.KEYEVENTF_KEYUP,0) continue else: key = ord(PassWord[i]) win32api.keybd_event(key,0,0,0) win32api.keybd_event(key,0,win32con.KEYEVENTF_KEYUP,0) time.sleep(0.2) ''' win32api.keybd_event(13,0,0,0) win32api.keybd_event(13,0,win32con.KEYEVENTF_KEYUP) #模擬輸入enter鍵,確認登陸
以上就是Python模擬鍵盤輸入自動登錄TGP的詳細內(nèi)容,更多關于python 模擬鍵盤輸入的資料請關注腳本之家其它相關文章!
相關文章
用smtplib和email封裝python發(fā)送郵件模塊類分享
本文針對發(fā)郵件相關的操作進行了封裝,包括發(fā)送文本、HTML、帶附件的郵件,使用Python發(fā)郵件,主要用到smtplib和email兩個模塊,需要的朋友可以參考下2014-02-02Python基于sftp及rsa密匙實現(xiàn)遠程拷貝文件的方法
這篇文章主要介紹了Python基于sftp及rsa密匙實現(xiàn)遠程拷貝文件的方法,結合實例形式分析了基于RSA秘鑰遠程登陸及文件操作的相關技巧,需要的朋友可以參考下2016-09-09Python列表(list)、字典(dict)、字符串(string)基本操作小結
這篇文章主要介紹了Python列表(list)、字典(dict)、字符串(string)基本操作小結,本文總結了最基本最常用的一些操作,需要的朋友可以參考下2014-11-11python之tensorflow手把手實例講解貓狗識別實現(xiàn)
要說到深度學習圖像分類的經(jīng)典案例之一,那就是貓狗大戰(zhàn)了。貓和狗在外觀上的差別還是挺明顯的,無論是體型、四肢、臉龐和毛發(fā)等等, 都是能通過肉眼很容易區(qū)分的。那么如何讓機器來識別貓和狗呢?網(wǎng)上已經(jīng)有不少人寫過這案例了,我也來嘗試下練練手。2021-09-09python和flask中返回JSON數(shù)據(jù)的方法
下面小編就為大家整理了一篇python和flask中返回JSON數(shù)據(jù)的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-03-03python cv2截取不規(guī)則區(qū)域圖片實例
今天小編就為大家分享一篇python cv2截取不規(guī)則區(qū)域圖片實例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-12-12