diff --git a/README.md b/README.md index 2a2789d..25b1fa8 100644 --- a/README.md +++ b/README.md @@ -354,7 +354,8 @@ A scenario where you want to poll the API for your configuration: ```bash # A simple example of the Apprise CLI # pulling down previously stored configuration -apprise -vvv --body="test message" --config=http://localhost:8000/get/{KEY} +apprise -vvv --body="test message" \ + --config=http://localhost:8000/get/{KEY} ``` You can also leverage the `import` parameter supported in Apprise configuration files if `APPRISE_CONFIG_LOCK` isn't set on the server you're accessing: @@ -378,7 +379,8 @@ If you used tagging, then you can notify the specific service like so: ```bash # Configuration is automatically loaded from our server. -apprise -vvv --tag=devops --body="Tell James GitLab is down again." +apprise -vvv --tag=devops \ + --body="Tell James GitLab is down again." ``` @@ -407,12 +409,13 @@ We could trigger our notification to our friends now like: ```bash # Trigger our service: -apprise -vvv --tag=devteam --body="Guys, don't forget about the audit tomorrow morning." +apprise -vvv --tag=devteam \ + --body="Guys, don't forget about the audit tomorrow morning." ``` ### AppriseConfig() Pull Example -Using the [Apprise Python library](https://github.com/caronc/apprise), you can easily access and load your saved configuration off of this API in order to use for future notifications. +Using the [Apprise Python library](https://github.com/caronc/apprise), you can easily access and load your saved configuration from this API in order to use for future notifications. ```python import apprise diff --git a/Screenshot-1.png b/Screenshot-1.png index b3b1064..980a1e3 100644 Binary files a/Screenshot-1.png and b/Screenshot-1.png differ diff --git a/Screenshot-2.png b/Screenshot-2.png index 55adf1c..87e4828 100644 Binary files a/Screenshot-2.png and b/Screenshot-2.png differ diff --git a/Screenshot-3.png b/Screenshot-3.png index add7240..ae43918 100644 Binary files a/Screenshot-3.png and b/Screenshot-3.png differ