colab でプッシュ通知

colab で2-3時間の training を動かしているときにプッシュ通知があると便利。 training 終了や例外がでたときにスマホにプッシュ通知が来るようにできる。
https://www.pushbullet.com/ を設定・アプリインストール。API Key を発行。こんなに簡単にプッシュ通知が実現。API Key は秘密にすべきなので Google Drive におくのが良いでしょう。

!pip install pushbullet.py
from pushbullet import Pushbullet
pb = Pushbullet('api_key')
push = pb.push_note("This is the title", "This is the body")