Questions tagged [skype4py]

Skype4Py is a BSD-licensed open source Python wrapper for the Skype API. It works on Windows, Linux and MacOS X so your scripts will work on all these platforms without any change. Its API is very similar to Skype4COM making it also suitable for rapid prototyping. Skype4Py has been tested with py2exe so it is possible to build native Windows executables using it.

Skype4Py is a BSD-licensed open source Python wrapper for the Skype API. It works on Windows, Linux and MacOS X so your scripts will work on all these platforms without any change. Its API is very similar to Skype4COM making it also suitable for rapid prototyping.

Skype4Py has been tested with py2exe so it is possible to build native Windows executables using it.

The Skype4Py project is hosted on GitHub at https://github.com/Skype4Py/Skype4Py. Its old home page at http://skype4py.sourceforge.net/ redirects to the (now moved) location https://developer.skype.com/wiki/Skype4Py which shows the "page not found" page at Skype Developer site.

Skype4Py used to be officially supported by Skype, but it no longer seems to be the case as is evident by the removal of the project home from Skype Developer site.

Even the project's mention on the original developer's home page at http://arkadiusz.wahlig.eu/Skype4Py.html is very sparse with just the few details as given above.

A fork of the Skype4Py project is available on GitHub at https://github.com/stigkj/Skype4Py called "Fork of the Skype4Py v1.0.32.0 Python library with a simple patch for doing thread handling correctly on Python v2.6 and up on OS X"

The last released version of the original project at SourceForge is 1.0.32 (last updated: 2009-12-10). The fork at GitHub was made on 2011-05-13 and last updated on 2012-07-25 (see: commit history)

77 questions
6
votes
1 answer

Skype4Py MessageStatus not firing consistently

I'm trying to make a basic Skype bot using Skype4Py and have encountered a rather serious error. I am working on a 64 bit windows 7 with the 32bit Python 2.7.8. installed, along with the latest version of Skype4Py. My main demand is that the bot has…
5xum
  • 5,250
  • 8
  • 36
  • 56
4
votes
1 answer

How can I send a message to a group conversation with Skype4Py in Python

I've been trying to get my script to send a message to a group conversation in Skype using the Skype4Py library, the only way I am currently able to send messages is to specific users. import Skype4Py Skype =…
Ryflex
  • 5,559
  • 25
  • 79
  • 148
4
votes
2 answers

Cannot import Skype4Py in Python

I'm using Skype4Py with Python 3.2.3 on windows. There was an error while trying to import Skype4Py package and I did the following to figure out what it was: import sys try: import Skype4Py except: print (sys.exc_info()[0]) print…
bala_88
  • 391
  • 1
  • 3
  • 14
3
votes
0 answers

problem in python script for phone call from skype account

I'm trying to do a phone call by python script from skype account. It runs properly sometime while sometime give segmentation error while sometime it runs without error but no output. I had used following script for this as, import Skype4Py import…
Zankar
  • 79
  • 1
  • 8
3
votes
1 answer

Issue with Bookmarked (and normal) chats with Skype4Py

As the title suggests, I cannot seem to find some chats when using Skype4Py. I've run this code: def get_bookmarked_chats(): for b in skype.BookmarkedChats: print b.Topic which should loop through all my bookmarked/favorite chats and print the…
Matthew
  • 672
  • 4
  • 11
3
votes
1 answer

Skype4Py: messageStatusChanged not always called

I have a Skype bot attached to a working Skype instance in X (Linux). The problem is that the messageStatusChanged event is not always triggered when an incoming message comes. It does in most cases, but sometimes the messages are just "lost". I can…
Roman Vinogradov
  • 145
  • 1
  • 12
2
votes
1 answer

python, skype4py

$ 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,…
2
votes
0 answers

Skype4py set video chat dialog to fullscreen

I'm trying to get the video chat window automatically in fullscreen when it appears. Using Skype 2.2 und Skype4py under Linux. Can not find a way to maximize the video dialog with Skype4py. Ideas? Thanks a lot.
John Doe
  • 21
  • 2
2
votes
0 answers

VOIP with Skype API?

I have a robot connected to the internet and I would like to use it to call or receive calls, but I don't know what to implement/develop. I would like some pieces of advice. I don't want to pay for this service. I thought of using Skype4Py but…
Abcdef GHI
  • 115
  • 2
  • 8
2
votes
0 answers

skype4py P2P chat is not getting delivered

I'm using Python script & skype4py to send the chat message but its not getting delivered. Below is my script. import Skype4Py import sys skype = Skype4Py.Skype() skype.Attach() user = 'user1' message = 'Build is…
ArunB
  • 21
  • 2
2
votes
1 answer

Skype SDK entry point to sign in a user error: NoFQDN

I'am trying to sign into Skype via the use of its SDK but I keep hitting the following error, "Error: NoFQDN". After searching this on the net I can't find any possible solution or even find out what the error means. Can anyone shed any light on…
Pradeep Patel
  • 471
  • 1
  • 6
  • 23
2
votes
0 answers

Python Skype bot won't send messages sometimes

I've started coding a Skype bot as my first Python project. It works pretty well when it actually sends the messages, but sometimes it completely doesn't send a message. I'm not sure if it's because of me writing it poorly or because of my Internet…
rsandu
  • 21
  • 2
2
votes
1 answer

Does Skype4py still work after Microsoft removed Skype Desktop API?

Does Skype4py use the Skype Desktop API? That API appears to have been (or is being) removed by Microsoft1. Does anybody know how this affects the skype4py project? 1 "What is the Desktop API?" on the Skype FAQ says: As communicated in this blog…
2
votes
0 answers

Python IRC/Skype Bridge spamming messages

I've tried so many ways the past week or so to try to get this to work. I've managed to get Skype2IRC to work in another script, and not spam IRC or anything. It was good. Just on message status, send message to IRC. That part I can get down easily.…
Axiom
  • 902
  • 1
  • 10
  • 23
2
votes
1 answer

How would I separate my Python File to multiple plugins?

So first thing I want to say: I have been looking into modules and such, I just don't quiet know how I would rewrite it to fit this in. Project: What I have is a Skype Bot using the Skype4Py module. I have about 11 commands I noticed the one script…
user2364549
  • 55
  • 1
  • 1
  • 6
1
2 3 4 5 6