MCPcopy Create free account
hub / github.com/CoderLuii/HolyClaude / send_notifications

Function send_notifications

scripts/notify.py:147–153  ·  view source on GitHub ↗
(urls, title, body, notify_type)

Source from the content-addressed store, hash-verified

145
146
147def 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
156def main():

Callers 1

mainFunction · 0.85

Calls 2

addMethod · 0.80
notifyMethod · 0.80

Tested by

no test coverage detected