Skype4Py附加功能第二次无法正常工作

时间:2012-10-23 11:37:29

标签: python skype skype4py

我正在尝试编写一个阻止某些用户的小型机器人。

这是我的代码:

import Skype4Py

skype = Skype4Py.Skype(Transport='x11')

skype.Attach()
print "Attachment status is " + str(skype.AttachmentStatus)
...
user._SetIsBlocked(True)

我第一次运行此脚本时,它会将 1 作为 skype.AttachmentStatus ,并阻止我选择的用户。 但如果我第二次运行它,它会给我 0 skype.AttachmentStatus ,并且不会阻止我选择的用户。

如果我等待一段时间(大约5分钟),然后尝试再次运行脚本,它就会开始工作。但只有一次。我将不得不再等五分钟再次运行它。

有人可以帮助或解释为什么会这样吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

此错误的解决方法是将自己的事件处理程序添加到skype.OnAttachmentStatus

示例:

# Attachment status handler
def OnAttach(status):
  print 'API attachment status: ' + skype.Convert.AttachmentStatusToText(status)
  if status == Skype4Py.apiAttachAvailable:
    skype.Attach()

  if status == Skype4Py.apiAttachSuccess:
   print '*************************************************'  

...

# Creating Skype object, assigning handler functions and attaching to Skype
skype = Skype4Py.Skype(Transport='x11')
skype.OnAttachmentStatus = OnAttach
skype.OnMessageStatus = OnMessageStatus

之后,每次运行它都会有效。