forked from platypush/platypush
Fixed google.credentials
script order of arguments in the docstring.
This commit is contained in:
parent
a5b7e2b52e
commit
1323156838
5 changed files with 5 additions and 10 deletions
|
@ -50,8 +50,7 @@ class GooglePlugin(Plugin):
|
||||||
mkdir -p <WORKDIR>/credentials/google
|
mkdir -p <WORKDIR>/credentials/google
|
||||||
python -m platypush.plugins.google.credentials \
|
python -m platypush.plugins.google.credentials \
|
||||||
'calendar.readonly,gmail.modify' \
|
'calendar.readonly,gmail.modify' \
|
||||||
[--noauth_local_webserver] \
|
<WORKDIR>/credentials/google/client_secret.json [--noauth_local_webserver]
|
||||||
<WORKDIR>/credentials/google/client_secret.json
|
|
||||||
|
|
||||||
When launched with ``--noauth_local_webserver``, the script will
|
When launched with ``--noauth_local_webserver``, the script will
|
||||||
start a local webserver and print a URL that should be opened in
|
start a local webserver and print a URL that should be opened in
|
||||||
|
|
|
@ -49,8 +49,7 @@ class GoogleCalendarPlugin(GooglePlugin, CalendarInterface):
|
||||||
mkdir -p <WORKDIR>/credentials/google
|
mkdir -p <WORKDIR>/credentials/google
|
||||||
python -m platypush.plugins.google.credentials \
|
python -m platypush.plugins.google.credentials \
|
||||||
'calendar.readonly' \
|
'calendar.readonly' \
|
||||||
[--noauth_local_webserver] \
|
<WORKDIR>/credentials/google/client_secret.json [--noauth_local_webserver]
|
||||||
<WORKDIR>/credentials/google/client_secret.json
|
|
||||||
|
|
||||||
When launched with ``--noauth_local_webserver``, the script will
|
When launched with ``--noauth_local_webserver``, the script will
|
||||||
start a local webserver and print a URL that should be opened in
|
start a local webserver and print a URL that should be opened in
|
||||||
|
|
|
@ -49,8 +49,7 @@ class GoogleDrivePlugin(GooglePlugin):
|
||||||
mkdir -p <WORKDIR>/credentials/google
|
mkdir -p <WORKDIR>/credentials/google
|
||||||
python -m platypush.plugins.google.credentials \
|
python -m platypush.plugins.google.credentials \
|
||||||
'drive,drive.appfolder,drive.photos.readonly' \
|
'drive,drive.appfolder,drive.photos.readonly' \
|
||||||
[--noauth_local_webserver] \
|
<WORKDIR>/credentials/google/client_secret.json [--noauth_local_webserver]
|
||||||
<WORKDIR>/credentials/google/client_secret.json
|
|
||||||
|
|
||||||
When launched with ``--noauth_local_webserver``, the script will
|
When launched with ``--noauth_local_webserver``, the script will
|
||||||
start a local webserver and print a URL that should be opened in
|
start a local webserver and print a URL that should be opened in
|
||||||
|
|
|
@ -59,8 +59,7 @@ class GoogleFitPlugin(GooglePlugin, RunnablePlugin):
|
||||||
fitness.location.read
|
fitness.location.read
|
||||||
"
|
"
|
||||||
$ python -m platypush.plugins.google.credentials "$roles" \
|
$ python -m platypush.plugins.google.credentials "$roles" \
|
||||||
[--noauth_local_webserver] \
|
<WORKDIR>/credentials/google/client_secret.json [--noauth_local_webserver]
|
||||||
<WORKDIR>/credentials/google/client_secret.json
|
|
||||||
|
|
||||||
When launched with ``--noauth_local_webserver``, the script will
|
When launched with ``--noauth_local_webserver``, the script will
|
||||||
start a local webserver and print a URL that should be opened in
|
start a local webserver and print a URL that should be opened in
|
||||||
|
|
|
@ -58,8 +58,7 @@ class GoogleMailPlugin(GooglePlugin):
|
||||||
mkdir -p <WORKDIR>/credentials/google
|
mkdir -p <WORKDIR>/credentials/google
|
||||||
python -m platypush.plugins.google.credentials \
|
python -m platypush.plugins.google.credentials \
|
||||||
'gmail.modify' \
|
'gmail.modify' \
|
||||||
[--noauth_local_webserver] \
|
<WORKDIR>/credentials/google/client_secret.json [--noauth_local_webserver]
|
||||||
<WORKDIR>/credentials/google/client_secret.json
|
|
||||||
|
|
||||||
When launched with ``--noauth_local_webserver``, the script will
|
When launched with ``--noauth_local_webserver``, the script will
|
||||||
start a local webserver and print a URL that should be opened in
|
start a local webserver and print a URL that should be opened in
|
||||||
|
|
Loading…
Reference in a new issue