File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ $ python qbr_tool.py
2828# Create the spreadsheet from the Google Slides template.
2929# For example, 13My9SxkotWssCc2F5yaXp2fzGrzoYV6maytr3qAT9GQ
3030$ python qbr_tool.py create_sheet --template_id < your template id> ;
31- Spreadsheet URL: https://docs.google.com/spreadsheets/d/< spreadsheet id>
31+
32+ # Outputs:
33+ # Spreadsheet URL: https://docs.google.com/spreadsheets/d/<spreadsheet id>
3234
3335# Add data from the stub customer service
3436$ python qbr_tool.py add_customers \
@@ -39,6 +41,8 @@ $ python qbr_tool.py add_customers \
3941$ python qbr_tool.py create_presentations
4042 --spreadsheet_id < spreadsheet id> \
4143 --customer_id jupiter
42- jupiter: https://docs.google.com/presentations/d/< filled in presentation id>
44+
45+ # Outputs:
46+ # jupiter: https://docs.google.com/presentations/d/<filled in presentation id>
4347```
4448
Original file line number Diff line number Diff line change 3636
3737
3838SCOPES = ['https://www.googleapis.com/auth/drive' ]
39- store = file .Storage ('credentials .json' )
39+ store = oauth_file .Storage ('token .json' )
4040creds = store .get ()
4141if not creds or creds .invalid :
42- flow = client .flow_from_clientsecrets ('client_secret .json' , SCOPES )
42+ flow = client .flow_from_clientsecrets ('credentials .json' , SCOPES )
4343 creds = tools .run_flow (flow , store )
4444
4545slides_service = build ('slides' , 'v1' , http = creds .authorize (Http ()))
You can’t perform that action at this time.
0 commit comments