使用gspread与代理

时间:2015-04-09 21:51:22

标签: python sockets gspread

我正在尝试通过python中的gspread api访问Google电子表格。我导入了gspread。我正在接收套接字。 error: [Errno 10061] No connection could be made because the target machine actively refused it

gc = gspread.login('pan*******@gmail.com', '********')

这是我的代码:

import urllib2
import urllib
import gspread
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont

w = 420

gc = gspread.login('pan******@gmail.com', '*******')
wks = gc.open("Spreadsheet").sheet1

我已检查过用户名和密码是否正确。我添加了两个环境变量'http_proxy':'host:port''https_proxy':'host:port' 我究竟做错了什么? 谢谢。

1 个答案:

答案 0 :(得分:1)

对于可能遇到此问题的任何人,我发现gspread库不支持代理连接。我通过正常的连接运行它,它工作。