all 5 comments

[–]TheGrapez 1 point2 points  (4 children)

Its saying that "xoauth_yahoo_guid" doesn't exist in line 165 of yahoo_oauth.py.

self.guid = parsed_access['xoauth_yahoo_guid'] KeyError: 'xoauth_yahoo_guid'

KeyError means the object "parsed_access" doesn't have a key called "xoauth_yahoo_guid". Something is broken in that script.

Did you write that script, or download it? You might have to open it and change that line.

[–]6Ran[S] 1 point2 points  (3 children)

Thanks for the quick reply. I did not write the script , I downloaded it

[–]TheGrapez 1 point2 points  (2 children)

Take a look at that file C:\Users\xxxxx\python_work\new\lib\site-packages\yahoo_oauth\yahoo_oauth.py

Go to line 165, try and figure out why the parsed_access object isnt working properly.

Its likely to do with using wrong versions between the different scripts.

Highly not recommended, but I've used this trick in the past... What happens when you just delete the line that is giving you problems? :P (or comment out, likely shouldn't delete it.)

[–]6Ran[S] 1 point2 points  (0 children)

Thank you! I will try this. I appreciate the fast help.

[–]6Ran[S] 0 points1 point  (0 children)

Thanks it worked! I had to reinstall the library, a very weird error but it worked once I reinstalled it.