Updated Development_API (markdown)

Chris Caron 2019-02-09 15:15:22 -05:00
parent 902c39c93c
commit 56dfa370c6

@ -107,13 +107,13 @@ a.notify(title="my title", body="my body", tag=[('TagE', 'TagD'), 'TagB'])
# Matches every single service. # Matches every single service.
a.notify(title="my title", body="my body") a.notify(title="my title", body="my body")
``` ```
You could look at the apprise.notify() logic like this: You could look at the **apprise.notify()** logic like this:
| tag= | Tag Representation | | tag= | Tag Representation |
| ------------------------- | ------------------------ | | ------------------------- | ------------------------ |
| "TagA, TagB" | TagA **or** TagB | "TagA, TagB" | TagA **or** TagB
| ['TagA', 'TagB'] | TagA **or** TagB | ['TagA', 'TagB'] | TagA **or** TagB
| [('TagA', 'TagC'), 'TagB']| (TagA **and** TagC) **or** TtagB | [('TagA', 'TagC'), 'TagB']| (TagA **and** TagC) **or** TagB
| [('TagB', 'TagC')] | TagB **and** TagC | [('TagB', 'TagC')] | TagB **and** TagC
By default, all notifications are sent as type **NotifyType.INFO** using the _default_ theme. The following other types are included with this theme: By default, all notifications are sent as type **NotifyType.INFO** using the _default_ theme. The following other types are included with this theme: