SkPy icon indicating copy to clipboard operation
SkPy copied to clipboard

An unofficial Python library for interacting with the Skype HTTP API.

Results 26 SkPy issues
Sort by recently updated
recently updated
newest added

Marking a message as read sometimes raise a `400 response from PUT`. I did not manage to understand exactly when or why it happens, but it is not uncommon at...

bug
incomplete

When sending a message via skpy, `getEvents()` yield: - A `SkypeNewMessageEvent` with my own message - A `SkypeChatUpdateEvent` that looks like a message receipt But when the other party reads...

bug

After 1 day the reauth after the token became invalid failed. The credentials should still be present as it wasn't restarted ``` Running While: 2017-02-21 20:22:00.228576 (Skypetoken valid for 0:00:07.771455)...

question

The latest Android beta introduced emoticon reactions on messages. Messages now carry an `emotions` property, for example: ```json {"from": "https://db5-client-s.gateway.messenger.live.com/v1/users/ME/contacts/8:fred.2", "type": "Message", "content": "Hello.", "conversationLink": "https://db5-client-s.gateway.messenger.live.com/v1/users/ME/conversations/8:joe.4", "clientmessageid": "12345678901234567890", "composetime": "2017-01-01T00:00:00.000Z",...

enhancement

### Account type Live ### Conversation details Group, desktop & mobile ### Steps to reproduce Unable to use emotes such as (creditcard) or flags such as (flag:us) in a rich...

enhancement

Hello! I found that `SkypeUser.invite()` and `SkypeContact.delete()` methods are not called on bot account which was logged. Explain me please, how do software will differ from what account it has...

incomplete

hi i am having some problem i am able to run this code below well locally however it is not working on google colab sk = Skype(username, pwd) These are...

incomplete

Hi! You wrote very interesting lib! Thank you very much for it. I can't understand how to use your protocol documentation. For example looks like https://github.com/Terrance/SkPy.docs/blob/master/background/protocol/contacts.rst contains demanded feature for...

enhancement

I try to send a .wav or .mp3 file to skype use skpy. i want it can play in skype client directly, but ch.sendfile has no trigger for audio file.

enhancement

I can only send images files with ch.sendfile, using this code: ``` from skpy import Skype sk = Skype(login, pass) ch = sk.contacts["nixellion"].chat ch.sendFile(open(pathToFile, "rb"), fileName, image=True) # file upload...

bug