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!
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!