spotware_connect package

Submodules

spotware_connect.client module

class spotware_connect.client.Client(live=False, retryPolicy=None, clock=None, prepareConnection=None)[source]

Bases: twisted.application.internet.ClientService

EVENT_CONNECT_NAME = 'connect'
EVENT_DISCONNECT_NAME = 'disconnect'
EVENT_MESSAGE_NAME = 'message'
class Factory(*args, **kwargs)[source]

Bases: twisted.internet.protocol.Factory

buildProtocol(addr)[source]

Create an instance of a subclass of Protocol.

The returned instance will handle input on an incoming server connection, and an attribute “factory” pointing to the creating factory.

Alternatively, L{None} may be returned to immediately close the new connection.

Override this method to alter how Protocol instances get created.

@param addr: an object implementing L{twisted.internet.interfaces.IAddress}

client = None
PROXY_DEMO = 'demo.ctraderapi.com:5035'
PROXY_LIVE = 'live.ctraderapi.com:5035'
class Protocol[source]

Bases: spotware_connect.protocol.Protocol

client = None
connectionLost(reason)[source]

Called when the connection is shut down.

Clear any circular references here, and any external references to this Protocol. The connection has been closed.

@type reason: L{twisted.python.failure.Failure}

connectionMade()[source]

Called when a connection is made.

This may be considered the initializer of the protocol, because it is called when the connection is completed. For clients, this is called once the connection to the server has been established; for servers, this is called after an accept() call stops blocking and a socket has been received. If you need to send any greeting or initial message, do it here.

receive(message)[source]
connect()[source]
disconnect()[source]
emit(message, msgid=None, **params)[source]
event(name_or_func=None, **filters)[source]
exec_events(name, *args, **kwargs)[source]
message(**filters)[source]
receive(message)[source]
start(timeout=None)[source]
stop()[source]

spotware_connect.protobuf module

class spotware_connect.protobuf.Protobuf[source]

Bases: object

classmethod extract(message)[source]
classmethod get(payload, fail=True, **params)[source]
classmethod get_type(payload, **params)[source]
classmethod populate()[source]

spotware_connect.protocol module

class spotware_connect.protocol.Protocol[source]

Bases: twisted.protocols.basic.Int32StringReceiver

MAX_LENGTH = 4611686018427387903
connectionLost(reason)[source]

Called when the connection is shut down.

Clear any circular references here, and any external references to this Protocol. The connection has been closed.

@type reason: L{twisted.python.failure.Failure}

connectionMade()[source]

Called when a connection is made.

This may be considered the initializer of the protocol, because it is called when the connection is completed. For clients, this is called once the connection to the server has been established; for servers, this is called after an accept() call stops blocking and a socket has been received. If you need to send any greeting or initial message, do it here.

heartbeat()[source]
receive(message)[source]
send(message, instant=False, msgid=None)[source]
stringReceived(data)[source]

Override this for notification when each complete string is received.

@param string: The complete string which was received with all
framing (length prefix, etc) removed.

@type string: C{bytes}

Module contents

Top-level package for spotware_connect.