I am trying to get Google's OAuth to work via the API client for Python.
https://developers.google.com/api-client-library/python/start/installation
I have used easy_setup to install it, and I have the apiclient packages in the same directory as my Python client. However, when I run my client, I get
from apiclient.discovery import build
from apiclient.errors import HttpError
ImportError: No module named errors
It looks like it can't find the errors.py class in the apiclient directory, but it is clearly there.
I have the packages included in my client:
from apiclient.discovery import build
from apiclient.http import MediaFileUpload
import httplib2
import mimetypes
from oauth2client.client import OAuth2WebServerFlow
from oauth2client.file import Storage as FileStorage
import oauth2client.tools
Is there a way around this?
Thanks.