我对Python比较陌生,但我已经在这方面寻找答案了。我的代码是:
import urllib, http
import gspread
import datetime
import getpass
import sys
from http import cookiejar
pwd = getpass.getpass()
然后显然更多,但它在第8行引发了一个错误:
File "C:\Python33\lib\idlelib\PyShell.py", line 60, in idle_showwarning
file.write(warnings.formatwarning(message, category, filename,
AttributeError: 'NoneType' object has no attribute 'write'"
我不确定这是否重要,但这就是我使用pwd的原因:
payload = {
'op': 'login-main',
'SignonAccountNumber': '###',
'SignonPassword': pwd
}
感谢您的帮助
答案 0 :(得分:1)
如果您使用IDLE作为编辑器,那么您的问题可能就是这个错误:http://bugs.python.org/issue18030
在错误报告中,用户通过使用以下命令运行IDLE来解决问题:python -m idlelib.idle