Spaces:
Running
Running
elfsong
commited on
Commit
·
7438000
1
Parent(s):
a1561e0
lalala
Browse files
app.py
CHANGED
@@ -6,6 +6,10 @@ from google.oauth2 import service_account
|
|
6 |
def auth():
|
7 |
with open("/tmp/token.json", "w") as token_f:
|
8 |
token_f.write("Hello")
|
|
|
|
|
|
|
|
|
9 |
return credentials
|
10 |
|
11 |
def get_status(credentials):
|
|
|
6 |
def auth():
|
7 |
with open("/tmp/token.json", "w") as token_f:
|
8 |
token_f.write("Hello")
|
9 |
+
|
10 |
+
with open("/tmp/token.json", "r") as token_f:
|
11 |
+
print(token_f.read())
|
12 |
+
|
13 |
return credentials
|
14 |
|
15 |
def get_status(credentials):
|