Skip to content

Commit

Permalink
Changing all references to apiclient -> googleapiclient.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wayne Parrott committed Feb 24, 2016
1 parent fdbe26d commit 62e6472
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 12 deletions.
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

0 comments on commit 62e6472

Please sign in to comment.