5
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

skpyで、pythonからskypeで通知する!

Posted at

#インストール
pip3 install SkPy

#初期化
from skpy import Skype
sk = Skype(#ID#, #PASS#)

#相手にメッセージ
c=sk.contacts["相手のID"].chat
c.sendMsg("ハロー")

#グループチャットに送る
g=sk.chats.chat("グループチャットのID")
g.sendMsg("ヘロー、グループ")

#相手のIDやグループチャットのIDを知る
sk.chats.recent()

#webページ
https://skpy.t.allofti.me/usage.html

5
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?