というわけで、自分のグループ用に独自のスカイプボットを作ろうと取り組んでいるのですが、自分の人生で最新のメッセージを取得する方法がわかりません。私はほとんど問題を抱えていないことが多いので、インターネットとスタックオーバーフローをすぐに調べましたが、Skype4Py ドキュメントには特定の機能に関するドキュメントがほとんど存在せず、stackoverflow については何もありません。これが私のコードです。助けてください。
#Importing!
import time, sys
import Skype4Py
#Set skypeclient and connect, while also setting my desired user
skypeClient = Skype4Py.Skype()
skypeClient.Attach()
user = sys.argv[1]
#Loop!
while 1:
"""
Here I am stumped. I have tried skypeClient.Chat.GetRecentMessages(),
skypeClient.Chat.Chat.GetRecentMessages
and that wouldn't even work for my purposes if it did work!
"""