-
In changedetection.io, I saw a configuration where a user entered
then in python i'm doing with
but this syntax is not in https://github.com/caronc/apprise/wiki/Notify_discord (missing the
no exception? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Because all of the plugins support the url the provider suggests you use (for user friendliness) It works for Slack and MS Teams and a number of other services too. Apprise is built on URLs, it only made sense to try and reverse/support Is this your question? Edit: i think i see what your asking; the If you did a The call to But this better explains you situation, the |
Beta Was this translation helpful? Give feedback.
-
""" ahhh yes exactly!! thank you ❤️ |
Beta Was this translation helpful? Give feedback.
Because all of the plugins support the url the provider suggests you use (for user friendliness)
Discord example: https://github.com/caronc/apprise/blob/1b2d1ca8247cc4c88e78d1080c0f12505b4ff236/apprise/plugins/NotifyDiscord.py#L652C3-L652C3
It works for Slack and MS Teams and a number of other services too. Apprise is built on URLs, it only made sense to try and reverse/support
http://
andhttps://
provided ones too 🚀🙂.Is this your question?
Edit: i think i see what your asking; the
add()
call can take more then one URL separated by spaces. In your example, theDiscord:
will fall to be parsed, and the second every entry will succeed.If you did a
len(apobj)
on the next line (after add cal…