googleapiclient.errors.UnknownApiNameOrVersion: name: chromewebstore version: v1.1
from httplib2 import Http
from apiclient.discovery import build
from oauth2client.service_account import ServiceAccountCredentials
SCOPES = ['https://www.googleapis.com/auth/chromewebstore']
credentials = ServiceAccountCredentials.from_json_keyfile_name('keyfile.json', SCOPES)
http_auth = credentials.authorize(Http())
chromewebstore = build('chromewebstore', 'v1.1', http=http_auth)