〇pushbulletのインストール
pipenv install pushbullet.py
またはpip install pushbullet.py
〇サンプルコード
以下のサンプルコードで指定した名前のユーザにメッセージを送る事ができます。apikeyにはpushbulletのアカウントページで作成したAPI KEYを指定します。
# coding: utf-8
from pushbullet import Pushbullet
apikey = "your-api-key"
pb = Pushbullet(apikey)
target=u'宛先の名前'
for ind,chat in enumerate(pb.chats):
print(chat.name)
if target in chat.name:
chat.push_note("hello world!", "message body")
0 件のコメント:
コメントを投稿