Skip to content

Commit 85d4b1c

Browse files
author
Jon Wayne Parrott
authored
Move to google-cloud (#544)
1 parent cb805a9 commit 85d4b1c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+156
-150
lines changed

appengine/flexible/datastore/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import socket
1919

2020
from flask import Flask, request
21-
from gcloud import datastore
21+
from google.cloud import datastore
2222

2323

2424
app = Flask(__name__)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==0.11.1
2-
gcloud==0.18.3
2+
google-cloud-datastore==0.20.0
33
gunicorn==19.6.0
44
oauth2client==3.0.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Django==1.10.1
2-
mysqlclient==1.3.7
2+
mysqlclient==1.3.8
33
wheel==0.30.0a0
44
gunicorn==19.6.0
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
Flask==0.11.1
22
flask-cors==3.0.2
33
gunicorn==19.6.0
4-
gcloud==0.18.3
54
six==1.10.0
65
pyyaml==3.12
76
requests==2.11.1
8-
google-api-python-client==1.5.3

appengine/flexible/pubsub/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import os
2020

2121
from flask import current_app, Flask, render_template, request
22-
from gcloud import pubsub
22+
from google.cloud import pubsub
2323

2424

2525
app = Flask(__name__)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==0.11.1
2-
gcloud==0.18.3
2+
google-cloud-pubsub==0.20.0
33
gunicorn==19.6.0
44
oauth2client==3.0.0

appengine/flexible/storage/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import os
1818

1919
from flask import Flask, request
20-
from gcloud import storage
20+
from google.cloud import storage
2121

2222
# [start config]
2323
app = Flask(__name__)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==0.11.1
2-
gcloud==0.18.3
2+
google-cloud-storage==0.20.0
33
gunicorn==19.6.0

bigquery/cloud-client/async_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import time
2828
import uuid
2929

30-
from gcloud import bigquery
30+
from google.cloud import bigquery
3131

3232

3333
def async_query(query):

bigquery/cloud-client/export_data_to_gcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import time
3030
import uuid
3131

32-
from gcloud import bigquery
32+
from google.cloud import bigquery
3333

3434

3535
def export_data_to_gcs(dataset_name, table_name, destination):

0 commit comments

Comments
 (0)