You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My credential expired recently. The new authentication code from Google included an escape character, "/", which tripped things up.
I got round the issue by enclosing the authentication code in single quotes. Per this article, it seems like raw_input() would be a better choice than input() when running with Python-2.
I'm trying to work in Python-3, where input() is the raw_input() from Python-2, so I just modified the shebang.
Thanks!
The text was updated successfully, but these errors were encountered:
My credential expired recently. The new authentication code from Google included an escape character, "/", which tripped things up.
I got round the issue by enclosing the authentication code in single quotes. Per this article, it seems like
raw_input()
would be a better choice thaninput()
when running with Python-2.I'm trying to work in Python-3, where
input()
is theraw_input()
from Python-2, so I just modified the shebang.Thanks!
The text was updated successfully, but these errors were encountered: