将 gspread 与代理一起使用
Using gspread with proxy
我正在尝试通过 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'
我究竟做错了什么?
谢谢。
对于可能遇到此问题的任何人,我发现 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'
我究竟做错了什么?
谢谢。
对于可能遇到此问题的任何人,我发现 gspread 库不支持代理连接。我 运行 它通过正常连接并且有效。