Python syntax error when tryng to generate oauth2 token
I'm having a problem in running a command to get offlineimap running. I'm not an expert and don't code in python.
I need to run the following command:
python python/oauth2.py --generate_oauth2_token
--client_id=MY_CLIENT_ID --client_secret=MY_CLIENT_SECRET
And I'm using the following repository to access the oauth2.py: gmail-oauth2-tools.
The problem is that when running the command I'm getting the following syntax error in the .py file:
File "oauth2.py", line 297
print 'Missing options: %s' % ' '.join(missing)
^
SyntaxError: invalid syntax
Below is the block of code where the error is contained:
def RequireOptions(options, *args):
missing = [arg for arg in args if getattr(options, arg) is None]
if missing:
print 'Missing options: %s' % ' '.join(missing)
sys.exit(-1)
For more reference, what I'm trying to do is listed in this document: offlineimap.conf (line 946).
python mutt gmail-imap
migrated from superuser.com Jan 5 at 11:47
This question came from our site for computer enthusiasts and power users.
add a comment |
I'm having a problem in running a command to get offlineimap running. I'm not an expert and don't code in python.
I need to run the following command:
python python/oauth2.py --generate_oauth2_token
--client_id=MY_CLIENT_ID --client_secret=MY_CLIENT_SECRET
And I'm using the following repository to access the oauth2.py: gmail-oauth2-tools.
The problem is that when running the command I'm getting the following syntax error in the .py file:
File "oauth2.py", line 297
print 'Missing options: %s' % ' '.join(missing)
^
SyntaxError: invalid syntax
Below is the block of code where the error is contained:
def RequireOptions(options, *args):
missing = [arg for arg in args if getattr(options, arg) is None]
if missing:
print 'Missing options: %s' % ' '.join(missing)
sys.exit(-1)
For more reference, what I'm trying to do is listed in this document: offlineimap.conf (line 946).
python mutt gmail-imap
migrated from superuser.com Jan 5 at 11:47
This question came from our site for computer enthusiasts and power users.
add a comment |
I'm having a problem in running a command to get offlineimap running. I'm not an expert and don't code in python.
I need to run the following command:
python python/oauth2.py --generate_oauth2_token
--client_id=MY_CLIENT_ID --client_secret=MY_CLIENT_SECRET
And I'm using the following repository to access the oauth2.py: gmail-oauth2-tools.
The problem is that when running the command I'm getting the following syntax error in the .py file:
File "oauth2.py", line 297
print 'Missing options: %s' % ' '.join(missing)
^
SyntaxError: invalid syntax
Below is the block of code where the error is contained:
def RequireOptions(options, *args):
missing = [arg for arg in args if getattr(options, arg) is None]
if missing:
print 'Missing options: %s' % ' '.join(missing)
sys.exit(-1)
For more reference, what I'm trying to do is listed in this document: offlineimap.conf (line 946).
python mutt gmail-imap
I'm having a problem in running a command to get offlineimap running. I'm not an expert and don't code in python.
I need to run the following command:
python python/oauth2.py --generate_oauth2_token
--client_id=MY_CLIENT_ID --client_secret=MY_CLIENT_SECRET
And I'm using the following repository to access the oauth2.py: gmail-oauth2-tools.
The problem is that when running the command I'm getting the following syntax error in the .py file:
File "oauth2.py", line 297
print 'Missing options: %s' % ' '.join(missing)
^
SyntaxError: invalid syntax
Below is the block of code where the error is contained:
def RequireOptions(options, *args):
missing = [arg for arg in args if getattr(options, arg) is None]
if missing:
print 'Missing options: %s' % ' '.join(missing)
sys.exit(-1)
For more reference, what I'm trying to do is listed in this document: offlineimap.conf (line 946).
python mutt gmail-imap
python mutt gmail-imap
asked Jan 5 at 11:42
Gavin BelsenGavin Belsen
63
63
migrated from superuser.com Jan 5 at 11:47
This question came from our site for computer enthusiasts and power users.
migrated from superuser.com Jan 5 at 11:47
This question came from our site for computer enthusiasts and power users.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Had the same problem, running python2 python/oauth2.py
instead of python python/oauth2.py
fixed it for me (you need to have python2 installed on your system)
It worked! Thanks a lot. I'm trying to get mutt to work with gmail but it has been a pain.
– Gavin Belsen
Jan 5 at 23:13
Yeah, it's annoying as hell, but it's worth it.
– Erik
Jan 6 at 8:16
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54051689%2fpython-syntax-error-when-tryng-to-generate-oauth2-token%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Had the same problem, running python2 python/oauth2.py
instead of python python/oauth2.py
fixed it for me (you need to have python2 installed on your system)
It worked! Thanks a lot. I'm trying to get mutt to work with gmail but it has been a pain.
– Gavin Belsen
Jan 5 at 23:13
Yeah, it's annoying as hell, but it's worth it.
– Erik
Jan 6 at 8:16
add a comment |
Had the same problem, running python2 python/oauth2.py
instead of python python/oauth2.py
fixed it for me (you need to have python2 installed on your system)
It worked! Thanks a lot. I'm trying to get mutt to work with gmail but it has been a pain.
– Gavin Belsen
Jan 5 at 23:13
Yeah, it's annoying as hell, but it's worth it.
– Erik
Jan 6 at 8:16
add a comment |
Had the same problem, running python2 python/oauth2.py
instead of python python/oauth2.py
fixed it for me (you need to have python2 installed on your system)
Had the same problem, running python2 python/oauth2.py
instead of python python/oauth2.py
fixed it for me (you need to have python2 installed on your system)
answered Jan 5 at 18:02
ErikErik
2,07942639
2,07942639
It worked! Thanks a lot. I'm trying to get mutt to work with gmail but it has been a pain.
– Gavin Belsen
Jan 5 at 23:13
Yeah, it's annoying as hell, but it's worth it.
– Erik
Jan 6 at 8:16
add a comment |
It worked! Thanks a lot. I'm trying to get mutt to work with gmail but it has been a pain.
– Gavin Belsen
Jan 5 at 23:13
Yeah, it's annoying as hell, but it's worth it.
– Erik
Jan 6 at 8:16
It worked! Thanks a lot. I'm trying to get mutt to work with gmail but it has been a pain.
– Gavin Belsen
Jan 5 at 23:13
It worked! Thanks a lot. I'm trying to get mutt to work with gmail but it has been a pain.
– Gavin Belsen
Jan 5 at 23:13
Yeah, it's annoying as hell, but it's worth it.
– Erik
Jan 6 at 8:16
Yeah, it's annoying as hell, but it's worth it.
– Erik
Jan 6 at 8:16
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54051689%2fpython-syntax-error-when-tryng-to-generate-oauth2-token%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown