mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-08 09:05:36 +00:00
Some checks are pending
Build and push containers / metadata (push) Waiting to run
Build and push containers / build-push-containers (push) Waiting to run
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Waiting to run
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Test the built 📦 package works basically. (push) Blocked by required conditions
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Blocked by required conditions
ChangeDetection.io App Test / lint-code (push) Waiting to run
ChangeDetection.io App Test / test-application-3-10 (push) Blocked by required conditions
ChangeDetection.io App Test / test-application-3-11 (push) Blocked by required conditions
ChangeDetection.io App Test / test-application-3-12 (push) Blocked by required conditions
ChangeDetection.io App Test / test-application-3-13 (push) Blocked by required conditions
17 lines
614 B
Python
17 lines
614 B
Python
from apprise import AppriseAsset
|
|
|
|
# Refer to:
|
|
# https://github.com/caronc/apprise/wiki/Development_API#the-apprise-asset-object
|
|
|
|
APPRISE_APP_ID = "changedetection.io"
|
|
APPRISE_APP_DESC = "ChangeDetection.io best and simplest website monitoring and change detection"
|
|
APPRISE_APP_URL = "https://changedetection.io"
|
|
APPRISE_AVATAR_URL = "https://raw.githubusercontent.com/dgtlmoon/changedetection.io/master/changedetectionio/static/images/avatar-256x256.png"
|
|
|
|
apprise_asset = AppriseAsset(
|
|
app_id=APPRISE_APP_ID,
|
|
app_desc=APPRISE_APP_DESC,
|
|
app_url=APPRISE_APP_URL,
|
|
image_url_logo=APPRISE_AVATAR_URL,
|
|
)
|