Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created December 9, 2019 03:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/52c2ccb24814b2b54a59a2cb30138746 to your computer and use it in GitHub Desktop.
Save ryantm/52c2ccb24814b2b54a59a2cb30138746 to your computer and use it in GitHub Desktop.
/nix/store/hzdai041rxm2x2ll11i93a83b829mj58-python3.8-apprise-0.8.2
├── bin
│   └── apprise
├── lib
│   └── python3.8
│   └── site-packages
│   ├── apprise
│   │   ├── AppriseAsset.py
│   │   ├── AppriseAttachment.py
│   │   ├── AppriseConfig.py
│   │   ├── AppriseLocale.py
│   │   ├── Apprise.py
│   │   ├── assets
│   │   │   ├── NotifyXML-1.0.xsd
│   │   │   └── themes
│   │   │   └── default
│   │   │   ├── apprise-failure-128x128.ico
│   │   │   ├── apprise-failure-128x128.png
│   │   │   ├── apprise-failure-256x256.png
│   │   │   ├── apprise-failure-32x32.png
│   │   │   ├── apprise-failure-72x72.png
│   │   │   ├── apprise-info-128x128.ico
│   │   │   ├── apprise-info-128x128.png
│   │   │   ├── apprise-info-256x256.png
│   │   │   ├── apprise-info-32x32.png
│   │   │   ├── apprise-info-72x72.png
│   │   │   ├── apprise-logo.png
│   │   │   ├── apprise-success-128x128.ico
│   │   │   ├── apprise-success-128x128.png
│   │   │   ├── apprise-success-256x256.png
│   │   │   ├── apprise-success-32x32.png
│   │   │   ├── apprise-success-72x72.png
│   │   │   ├── apprise-warning-128x128.ico
│   │   │   ├── apprise-warning-128x128.png
│   │   │   ├── apprise-warning-256x256.png
│   │   │   ├── apprise-warning-32x32.png
│   │   │   └── apprise-warning-72x72.png
│   │   ├── attachment
│   │   │   ├── AttachBase.py
│   │   │   ├── AttachFile.py
│   │   │   ├── AttachHTTP.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── AttachBase.cpython-38.pyc
│   │   │   ├── AttachFile.cpython-38.pyc
│   │   │   ├── AttachHTTP.cpython-38.pyc
│   │   │   └── __init__.cpython-38.pyc
│   │   ├── cli.py
│   │   ├── common.py
│   │   ├── config
│   │   │   ├── ConfigBase.py
│   │   │   ├── ConfigFile.py
│   │   │   ├── ConfigHTTP.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── ConfigBase.cpython-38.pyc
│   │   │   ├── ConfigFile.cpython-38.pyc
│   │   │   ├── ConfigHTTP.cpython-38.pyc
│   │   │   └── __init__.cpython-38.pyc
│   │   ├── i18n
│   │   │   ├── en
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── apprise.mo
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-38.pyc
│   │   ├── __init__.py
│   │   ├── logger.py
│   │   ├── plugins
│   │   │   ├── __init__.py
│   │   │   ├── NotifyBase.py
│   │   │   ├── NotifyBoxcar.py
│   │   │   ├── NotifyClickSend.py
│   │   │   ├── NotifyD7Networks.py
│   │   │   ├── NotifyDBus.py
│   │   │   ├── NotifyDiscord.py
│   │   │   ├── NotifyEmail.py
│   │   │   ├── NotifyEmby.py
│   │   │   ├── NotifyFaast.py
│   │   │   ├── NotifyFlock.py
│   │   │   ├── NotifyGitter.py
│   │   │   ├── NotifyGnome.py
│   │   │   ├── NotifyGotify.py
│   │   │   ├── NotifyGrowl
│   │   │   │   ├── gntp
│   │   │   │   │   ├── cli.py
│   │   │   │   │   ├── config.py
│   │   │   │   │   ├── core.py
│   │   │   │   │   ├── errors.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── notifier.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── cli.cpython-38.pyc
│   │   │   │   │   │   ├── config.cpython-38.pyc
│   │   │   │   │   │   ├── core.cpython-38.pyc
│   │   │   │   │   │   ├── errors.cpython-38.pyc
│   │   │   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   │   │   ├── notifier.cpython-38.pyc
│   │   │   │   │   │   ├── shim.cpython-38.pyc
│   │   │   │   │   │   └── version.cpython-38.pyc
│   │   │   │   │   ├── shim.py
│   │   │   │   │   └── version.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-38.pyc
│   │   │   ├── NotifyIFTTT.py
│   │   │   ├── NotifyJoin.py
│   │   │   ├── NotifyJSON.py
│   │   │   ├── NotifyKumulos.py
│   │   │   ├── NotifyMailgun.py
│   │   │   ├── NotifyMatrix.py
│   │   │   ├── NotifyMatterMost.py
│   │   │   ├── NotifyMessageBird.py
│   │   │   ├── NotifyMSG91.py
│   │   │   ├── NotifyMSTeams.py
│   │   │   ├── NotifyNexmo.py
│   │   │   ├── NotifyNotica.py
│   │   │   ├── NotifyNotifico.py
│   │   │   ├── NotifyProwl.py
│   │   │   ├── NotifyPushBullet.py
│   │   │   ├── NotifyPushed.py
│   │   │   ├── NotifyPushjet.py
│   │   │   ├── NotifyPushover.py
│   │   │   ├── NotifyRocketChat.py
│   │   │   ├── NotifyRyver.py
│   │   │   ├── NotifySendGrid.py
│   │   │   ├── NotifySimplePush.py
│   │   │   ├── NotifySlack.py
│   │   │   ├── NotifySNS.py
│   │   │   ├── NotifySyslog.py
│   │   │   ├── NotifyTechulusPush.py
│   │   │   ├── NotifyTelegram.py
│   │   │   ├── NotifyTwilio.py
│   │   │   ├── NotifyTwist.py
│   │   │   ├── NotifyTwitter.py
│   │   │   ├── NotifyWebexTeams.py
│   │   │   ├── NotifyWindows.py
│   │   │   ├── NotifyXBMC.py
│   │   │   ├── NotifyXML.py
│   │   │   ├── NotifyXMPP.py
│   │   │   ├── NotifyZulip.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── NotifyBase.cpython-38.pyc
│   │   │   ├── NotifyBoxcar.cpython-38.pyc
│   │   │   ├── NotifyClickSend.cpython-38.pyc
│   │   │   ├── NotifyD7Networks.cpython-38.pyc
│   │   │   ├── NotifyDBus.cpython-38.pyc
│   │   │   ├── NotifyDiscord.cpython-38.pyc
│   │   │   ├── NotifyEmail.cpython-38.pyc
│   │   │   ├── NotifyEmby.cpython-38.pyc
│   │   │   ├── NotifyFaast.cpython-38.pyc
│   │   │   ├── NotifyFlock.cpython-38.pyc
│   │   │   ├── NotifyGitter.cpython-38.pyc
│   │   │   ├── NotifyGnome.cpython-38.pyc
│   │   │   ├── NotifyGotify.cpython-38.pyc
│   │   │   ├── NotifyIFTTT.cpython-38.pyc
│   │   │   ├── NotifyJoin.cpython-38.pyc
│   │   │   ├── NotifyJSON.cpython-38.pyc
│   │   │   ├── NotifyKumulos.cpython-38.pyc
│   │   │   ├── NotifyMailgun.cpython-38.pyc
│   │   │   ├── NotifyMatrix.cpython-38.pyc
│   │   │   ├── NotifyMatterMost.cpython-38.pyc
│   │   │   ├── NotifyMessageBird.cpython-38.pyc
│   │   │   ├── NotifyMSG91.cpython-38.pyc
│   │   │   ├── NotifyMSTeams.cpython-38.pyc
│   │   │   ├── NotifyNexmo.cpython-38.pyc
│   │   │   ├── NotifyNotica.cpython-38.pyc
│   │   │   ├── NotifyNotifico.cpython-38.pyc
│   │   │   ├── NotifyProwl.cpython-38.pyc
│   │   │   ├── NotifyPushBullet.cpython-38.pyc
│   │   │   ├── NotifyPushed.cpython-38.pyc
│   │   │   ├── NotifyPushjet.cpython-38.pyc
│   │   │   ├── NotifyPushover.cpython-38.pyc
│   │   │   ├── NotifyRocketChat.cpython-38.pyc
│   │   │   ├── NotifyRyver.cpython-38.pyc
│   │   │   ├── NotifySendGrid.cpython-38.pyc
│   │   │   ├── NotifySimplePush.cpython-38.pyc
│   │   │   ├── NotifySlack.cpython-38.pyc
│   │   │   ├── NotifySNS.cpython-38.pyc
│   │   │   ├── NotifySyslog.cpython-38.pyc
│   │   │   ├── NotifyTechulusPush.cpython-38.pyc
│   │   │   ├── NotifyTelegram.cpython-38.pyc
│   │   │   ├── NotifyTwilio.cpython-38.pyc
│   │   │   ├── NotifyTwist.cpython-38.pyc
│   │   │   ├── NotifyTwitter.cpython-38.pyc
│   │   │   ├── NotifyWebexTeams.cpython-38.pyc
│   │   │   ├── NotifyWindows.cpython-38.pyc
│   │   │   ├── NotifyXBMC.cpython-38.pyc
│   │   │   ├── NotifyXML.cpython-38.pyc
│   │   │   ├── NotifyXMPP.cpython-38.pyc
│   │   │   └── NotifyZulip.cpython-38.pyc
│   │   ├── __pycache__
│   │   │   ├── AppriseAsset.cpython-38.pyc
│   │   │   ├── AppriseAttachment.cpython-38.pyc
│   │   │   ├── AppriseConfig.cpython-38.pyc
│   │   │   ├── Apprise.cpython-38.pyc
│   │   │   ├── AppriseLocale.cpython-38.pyc
│   │   │   ├── cli.cpython-38.pyc
│   │   │   ├── common.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── logger.cpython-38.pyc
│   │   │   ├── URLBase.cpython-38.pyc
│   │   │   └── utils.cpython-38.pyc
│   │   ├── URLBase.py
│   │   └── utils.py
│   └── apprise-0.8.2.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
25 directories, 190 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment