Skip to content

Instantly share code, notes, and snippets.

View aisbergde's full-sized avatar

Germo Görtz aisbergde

View GitHub Profile
@aisbergde
aisbergde / frigate_telegram_notification.yaml
Last active January 23, 2024 16:26 — forked from NdR91/frigate_telegram_notification.yaml
Frigate - Telegram Notification
blueprint:
name: Frigate - Telegram Notification (aisbergde)
description: Create automations to receive Snapshots, thumbnails and Clips from Frigate
domain: automation
input:
camera:
name: Frigate Camera
description: The name of the camera as defined in your frigate configuration (/conf.yml).
target_chat:
name: Target
#!/usr/bin/env python3
import json
import requests
import argparse
from datetime import datetime
def prompt_for_credentials():
api_key = input('Enter API key: ')
immich_server = input('Enter full address including http and port (e.g. http://192.168.0.1:2283): ')