Package Skype4Py :: Package API :: Class ICommand
[frames] | no frames]

Class ICommand

source code

object --+
         |
        ICommand

Represents an API command. Use ISkype.Command to instatinate.

To send a command to Skype, use ISkype.SendCommand.

Instance Methods
 
__init__(self, Id, Command, Expected=u'', Blocking=False, Timeout=30000)
Use ISkype.Command to instatinate the object instead.
source code
 
__repr__(self)
repr(x)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables
bool Blocking
If set to True, ISkype.SendCommand will block until the reply is received.
unicode Command
Command string.
unicode Expected
Expected reply.
int Id
Command Id.
unicode Reply
Reply after the command has been sent and Skype has replied.
int Timeout
Timeout in milliseconds if Blocking=True.
Properties

Inherited from object: __class__

Method Details

__init__(self, Id, Command, Expected=u'', Blocking=False, Timeout=30000)
(Constructor)

source code 

Use ISkype.Command to instatinate the object instead.

Overrides: object.__init__

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)