[Tutor] python ssl error

2014-08-17 Thread Matthew Ngaha
Hi this might not be the correct place to ask this. I am using the google api and as soon as I use the build function: service = build('books', 'v1', developerKey=api_key) I get an SSL error. I'm not sure what build() does but it triggers an SSL error. Here's the error message:

Re: [Tutor] python ssl error

2014-08-17 Thread Danny Yoo
On Sun, Aug 17, 2014 at 5:14 AM, Matthew Ngaha chigga...@gmail.com wrote: Hi this might not be the correct place to ask this. I am using the google api and as soon as I use the build function: service = build('books', 'v1', developerKey=api_key) I get an SSL error. I'm not sure what

Re: [Tutor] python ssl error

2014-08-17 Thread Matthew Ngaha
On Sun, Aug 17, 2014 at 11:26 PM, Danny Yoo d...@hashcollision.org wrote: I would recommend checking whether the 'cacerts.txt' file in that subdirectory is user-readable or not. Make sure it's readable. If it isn't, chmod it and try again: that will probably fix it. Thanks ever so much for