あらゆるプラットフォームで動作するプッシュ通知「apprise」のインストールについて解説しています。
「apprise(https://github.com/caronc/apprise)」は、Discord、Slack、Amazon SNS、Gotifyなど、現在利用可能なほとんど全ての通知サービスに通知を送信することができるライブラリです。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■appriseをインストールする
appriseをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install apprise
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。
py -3.8 -m pip install apprise
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting apprise Downloading apprise-0.9.7-py2.py3-none-any.whl (1.1 MB) |████████████████████████████████| 1.1 MB 819 kB/s Requirement already satisfied: requests in c:\users\user_\appdata\roaming\python\python38\site-packages (from apprise) (2.24.0) Requirement already satisfied: click>=5.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from apprise) (8.0.4) Requirement already satisfied: PyYAML in c:\users\user_\appdata\roaming\python\python38\site-packages (from apprise) (5.4.1) Requirement already satisfied: markdown in c:\users\user_\appdata\roaming\python\python38\site-packages (from apprise) (3.3.4) Requirement already satisfied: requests-oauthlib in c:\users\user_\appdata\roaming\python\python38\site-packages (from apprise) (1.3.0) Requirement already satisfied: six in c:\users\user_\appdata\roaming\python\python38\site-packages (from apprise) (1.15.0) Requirement already satisfied: colorama in c:\users\user_\appdata\roaming\python\python38\site-packages (from click>=5.0->apprise) (0.4.4) Requirement already satisfied: chardet<4,>=3.0.2 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests->apprise) (3.0.4) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests->apprise) (1.25.11) Requirement already satisfied: certifi>=2017.4.17 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests->apprise) (2021.5.30) Requirement already satisfied: idna<3,>=2.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests->apprise) (2.10) Requirement already satisfied: oauthlib>=3.0.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests-oauthlib->apprise) (3.1.1) Installing collected packages: apprise Successfully installed apprise-0.9.7
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、appriseが正常にインストールされたことになります。
なお、今回はappriseのバージョン0.9.7をインストールしました。
コメント