File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,11 @@ Changelog
6
6
0.10.0 / TBD
7
7
------------
8
8
9
- - This fixes a bug where pandas-gbq could not upload an empty database. (:issue: `237 `)
9
+ - Fix a bug where pandas-gbq could not upload an empty DataFrame. (:issue: `237 `)
10
+ - Update the authentication credentials. **Note: ** You may need to set
11
+ ``reauth=True `` in order to update your credentials to the most recent
12
+ version. This is required to use new functionality such as the BigQuery
13
+ Storage API. (:issue: `TBD `)
10
14
11
15
Dependency updates
12
16
~~~~~~~~~~~~~~~~~~
@@ -23,7 +27,7 @@ Internal changes
23
27
Enhancements
24
28
~~~~~~~~~~~~
25
29
- Allow ``table_schema `` in :func: `to_gbq ` to contain only a subset of columns,
26
- with the rest being populated using the DataFrame dtypes (:issue: `218 `)
30
+ with the rest being populated using the DataFrame dtypes (:issue: `218 `)
27
31
(contributed by @johnpaton)
28
32
- Read ``project_id `` in :func: `to_gbq ` from provided ``credentials `` if
29
33
available (contributed by @daureg)
Original file line number Diff line number Diff line change 17
17
SCOPES = ["https://www.googleapis.com/auth/bigquery" ]
18
18
19
19
# The following constants are used for end-user authentication.
20
- # It identifies the application that is requesting permission to access the
21
- # BigQuery API on behalf of a G Suite or Gmail user.
20
+ # It identifies (via credentials from the pandas-gbq-auth GCP project) the
21
+ # application that is requesting permission to access the BigQuery API on
22
+ # behalf of a G Suite or Gmail user.
22
23
#
23
24
# In a web application, the client secret would be kept secret, but this is not
24
25
# possible for applications that are installed locally on an end-user's
25
26
# machine.
26
27
#
27
28
# See: https://cloud.google.com/docs/authentication/end-user for details.
28
29
CLIENT_ID = (
29
- "495642085510-k0tmvj2m941jhre2nbqka17vqpjfddtd .apps.googleusercontent.com"
30
+ "725825577420-unm2gnkiprugilg743tkbig250f4sfsj .apps.googleusercontent.com"
30
31
)
31
- CLIENT_SECRET = "kOc9wMptUtxkcIFbtZCcrEAc "
32
+ CLIENT_SECRET = "4hqze9yI8fxShls8eJWkeMdJ "
32
33
33
34
34
35
def get_credentials (
You can’t perform that action at this time.
0 commit comments