(urls, title, body, notify_type)
| 145 | |
| 146 | |
| 147 | def send_notifications(urls, title, body, notify_type): |
| 148 | import apprise |
| 149 | |
| 150 | ap = apprise.Apprise() |
| 151 | for url in urls: |
| 152 | ap.add(url) |
| 153 | ap.notify(title=title, body=body, notify_type=notify_type) |
| 154 | |
| 155 | |
| 156 | def main(): |