Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -4,8 +4,7 @@ from audiorecorder import audiorecorder
|
|
4 |
from apiclient import discovery
|
5 |
from httplib2 import Http
|
6 |
from oauth2client import client, file, tools
|
7 |
-
|
8 |
-
from huggingface_hub import login
|
9 |
|
10 |
import warnings
|
11 |
|
@@ -22,9 +21,7 @@ def main():
|
|
22 |
store = file.Storage("credentials.json")
|
23 |
creds = store.get()
|
24 |
if not creds or creds.invalid:
|
25 |
-
|
26 |
-
dataset = load_dataset("secrets/client_secret_535279977482-vc7fo2d86o7uq3qnl05epg9l6sv6a6s1.apps.googleusercontent.com.json")
|
27 |
-
flow = client.flow_from_clientsecrets(dataset,SCOPES)
|
28 |
creds = tools.run_flow(flow, store)
|
29 |
form_service = discovery.build("forms", "v1", http=creds.authorize(Http()))
|
30 |
|
|
|
4 |
from apiclient import discovery
|
5 |
from httplib2 import Http
|
6 |
from oauth2client import client, file, tools
|
7 |
+
|
|
|
8 |
|
9 |
import warnings
|
10 |
|
|
|
21 |
store = file.Storage("credentials.json")
|
22 |
creds = store.get()
|
23 |
if not creds or creds.invalid:
|
24 |
+
flow = client.flow_from_clientsecrets("client_secret_535279977482-vc7fo2d86o7uq3qnl05epg9l6sv6a6s1.apps.googleusercontent.com.json",SCOPES)
|
|
|
|
|
25 |
creds = tools.run_flow(flow, store)
|
26 |
form_service = discovery.build("forms", "v1", http=creds.authorize(Http()))
|
27 |
|