initial commit

This commit is contained in:
2025-11-09 12:26:46 -03:00
commit fee9b9f89a
27 changed files with 669 additions and 0 deletions

6
ntfy_service.py Normal file
View File

@@ -0,0 +1,6 @@
import requests
def send_notification(message: str):
response = requests.post('https://ntfy.ccalifice.com/ghostfolio', data=message, headers={"Authorization": "Bearer tk_dl5jaui6j3pc2dx9rx8qj9sdwh23k"})
return response.status_code