Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 73cfa81

Browse filesBrowse files
author
Jon Wayne Parrott
committed
Merge pull request GoogleCloudPlatform#205 from GoogleCloudPlatform/apiclient
Changing all references to apiclient -> googleapiclient.
2 parents fdbe26d + 62e6472 commit 73cfa81
Copy full SHA for 73cfa81

File tree

Expand file treeCollapse file tree

9 files changed

+10
-12
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

9 files changed

+10
-12
lines changed
Open diff view settings
Collapse file

‎bigquery/api/getting_started.py‎

Copy file name to clipboardExpand all lines: bigquery/api/getting_started.py
+2-2Lines changed: 2 additions & 2 deletions
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

Collapse file

‎bigquery/api/list_datasets_projects.py‎

Copy file name to clipboardExpand all lines: bigquery/api/list_datasets_projects.py
+1-1Lines changed: 1 addition & 1 deletion
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

Collapse file

‎bigquery/api/load_data_by_post.py‎

Copy file name to clipboardExpand all lines: bigquery/api/load_data_by_post.py
+1-3Lines changed: 1 addition & 3 deletions
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

Collapse file

‎storage/api/compose_objects.py‎

Copy file name to clipboardExpand all lines: storage/api/compose_objects.py
+1-1Lines changed: 1 addition & 1 deletion
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

Collapse file

‎storage/api/list_objects.py‎

Copy file name to clipboardExpand all lines: storage/api/list_objects.py
+1-1Lines changed: 1 addition & 1 deletion
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

Collapse file

‎storage/transfer_service/aws_request.py‎

Copy file name to clipboardExpand all lines: storage/transfer_service/aws_request.py
+1-1Lines changed: 1 addition & 1 deletion
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

Collapse file

‎storage/transfer_service/create_client.py‎

Copy file name to clipboardExpand all lines: storage/transfer_service/create_client.py
+1-1Lines changed: 1 addition & 1 deletion
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

Collapse file

‎storage/transfer_service/nearline_request.py‎

Copy file name to clipboardExpand all lines: storage/transfer_service/nearline_request.py
+1-1Lines changed: 1 addition & 1 deletion
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

Collapse file

‎storage/transfer_service/transfer_check.py‎

Copy file name to clipboardExpand all lines: storage/transfer_service/transfer_check.py
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.