Skype4Py の簡単な python コードを実行しようとしましたが、ここに私のコードがあります
import Skype4Py
import logging
logging.basicConfig(level=logging.DEBUG)
print 'OK'
# Create Skype instance
print 'CREATE'
skype = Skype4Py.Skype()
print 'CREATED'
# Connect Skype object to Skype client
print 'CONNECT'
skype.Attach()
print 'CONNECTED'
print 'Your full name:', skype.CurrentUser.FullName
print 'Your contacts:'
for user in skype.Friends:
print 'LOOP'
print ' ', user.FullName
print 'DONE'
そして私の出力はこれです
OK
CREATE
INFO:Skype4Py.skype.Skype:object created
INFO:Skype4Py.api.posix_dbus.SkypeAPI:opened
CREATED
CONNECT
INFO:Skype4Py.api.posix_dbus.SkypeAPI:thread started
Segmentation fault
Segmentation in skype.Attach().
誰でもこれを解決する方法を知っていますか? ありがとう