Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing all references to apiclient -> googleapiclient. #205

Merged
merged 1 commit into from
Feb 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bigquery/api/getting_started.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
# [START all]
import argparse

from apiclient.discovery import build
from apiclient.errors import HttpError
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
from oauth2client.client import GoogleCredentials


Expand Down
2 changes: 1 addition & 1 deletion bigquery/api/list_datasets_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import argparse
from pprint import pprint

from apiclient import discovery
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials
from six.moves.urllib.error import HTTPError

Expand Down
4 changes: 1 addition & 3 deletions bigquery/api/load_data_by_post.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,8 @@
import json
import time

from apiclient.http import MediaFileUpload

from googleapiclient import discovery

from googleapiclient.http import MediaFileUpload
from oauth2client.client import GoogleCredentials


Expand Down
2 changes: 1 addition & 1 deletion storage/api/compose_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import argparse
import json

from apiclient import discovery
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials


Expand Down
2 changes: 1 addition & 1 deletion storage/api/list_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import argparse
import json

from apiclient import discovery
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials


Expand Down
2 changes: 1 addition & 1 deletion storage/transfer_service/aws_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import datetime
import json

from apiclient import discovery
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials


Expand Down
2 changes: 1 addition & 1 deletion storage/transfer_service/create_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# limitations under the License.

# [START all]
from apiclient import discovery
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials


Expand Down
2 changes: 1 addition & 1 deletion storage/transfer_service/nearline_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import datetime
import json

from apiclient import discovery
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials


Expand Down
2 changes: 1 addition & 1 deletion storage/transfer_service/transfer_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import argparse
import json

from apiclient import discovery
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials


Expand Down