Skip to content

Commit 62e6472

Browse files
author
Jon Wayne Parrott
committed
Changing all references to apiclient -> googleapiclient.
1 parent fdbe26d commit 62e6472

9 files changed

+10
-12
lines changed

bigquery/api/getting_started.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# [START all]
2828
import argparse
2929

30-
from apiclient.discovery import build
31-
from apiclient.errors import HttpError
30+
from googleapiclient.discovery import build
31+
from googleapiclient.errors import HttpError
3232
from oauth2client.client import GoogleCredentials
3333

3434

bigquery/api/list_datasets_projects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import argparse
2626
from pprint import pprint
2727

28-
from apiclient import discovery
28+
from googleapiclient import discovery
2929
from oauth2client.client import GoogleCredentials
3030
from six.moves.urllib.error import HTTPError
3131

bigquery/api/load_data_by_post.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@
2626
import json
2727
import time
2828

29-
from apiclient.http import MediaFileUpload
30-
3129
from googleapiclient import discovery
32-
30+
from googleapiclient.http import MediaFileUpload
3331
from oauth2client.client import GoogleCredentials
3432

3533

storage/api/compose_objects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import argparse
3737
import json
3838

39-
from apiclient import discovery
39+
from googleapiclient import discovery
4040
from oauth2client.client import GoogleCredentials
4141

4242

storage/api/list_objects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import argparse
3030
import json
3131

32-
from apiclient import discovery
32+
from googleapiclient import discovery
3333
from oauth2client.client import GoogleCredentials
3434

3535

storage/transfer_service/aws_request.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import datetime
2929
import json
3030

31-
from apiclient import discovery
31+
from googleapiclient import discovery
3232
from oauth2client.client import GoogleCredentials
3333

3434

storage/transfer_service/create_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# limitations under the License.
1313

1414
# [START all]
15-
from apiclient import discovery
15+
from googleapiclient import discovery
1616
from oauth2client.client import GoogleCredentials
1717

1818

storage/transfer_service/nearline_request.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import datetime
2828
import json
2929

30-
from apiclient import discovery
30+
from googleapiclient import discovery
3131
from oauth2client.client import GoogleCredentials
3232

3333

storage/transfer_service/transfer_check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import argparse
2828
import json
2929

30-
from apiclient import discovery
30+
from googleapiclient import discovery
3131
from oauth2client.client import GoogleCredentials
3232

3333

0 commit comments

Comments
 (0)