Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$ sudo python2.6
>>> import Skype4Py
>>> skype = Skype4Py.Skype()
>>> skype.Attach()

And nothing happens.. just it turn me out to the console. And I'm trying next to get result without sudo

$ python2.6
Python 2.6.6 (r266:84292, Mar 25 2011, 19:24:58) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Skype4Py
>>> skype = Skype4Py.Skype()
>>> skype.Attach()
$ Segmentation fault

I don't understand - it's wrong result.

I want to get invite from skype to approve access for my application, which is I take in win32 application. But there is no result. How i can get it?

You can find Skype4Py lib here - http://sourceforge.net/projects/skype4py/

Thanks for any help.

share|improve this question

1 Answer

up vote 4 down vote accepted

Some say that this is a bug because Skype4Py is configured for other systems. Try using with X11:

import Skype4Py
Skype4Py.Skype(Transport='x11')
skype.Attach()
share|improve this answer
It's a decision - a lot of Thanks :) – Александр Кривошеев Mar 22 '12 at 9:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.