コード例 #1
0
ファイル: Factories.py プロジェクト: 292388900/restcommander
def SocketConnection(host, port = DEFAULT_PORT):
    """shorthand for creating a conneciton over a socket to a server"""
    return Connection(Channel(SocketStream.from_new_socket(host, port)))
コード例 #2
0
ファイル: Factories.py プロジェクト: microrepar/siga
def SocketConnection(host, port=DEFAULT_PORT):
    """shorthand for creating a conneciton over a socket to a server"""
    return Connection(Channel(SocketStream.from_new_socket(host, port)))