Sha256: f8daf51d93a609f77d240a14cda1458781b2b2e9f9ab586485fef0bec066671f
Contents?: true
Size: 937 Bytes
Versions: 8
Compression:
Stored size: 937 Bytes
Contents
from javonet.core.transmitter.PythonTransmitterWrapper import PythonTransmitterWrapper class PythonTransmitter: @staticmethod def send_command(message): return PythonTransmitterWrapper.send_command(message) @staticmethod def __activate(licence_key="", proxy_host="", proxy_user_name="", proxy_user_password=""): return PythonTransmitterWrapper.activate(licence_key, proxy_host, proxy_user_name, proxy_user_password) @staticmethod def activate_with_licence_file(): return PythonTransmitter.__activate() @staticmethod def activate_with_credentials(licence_key): return PythonTransmitter.__activate(licence_key) @staticmethod def activate_with_credentials_and_proxy(licence_key, proxy_host, proxy_user_name, proxy_user_password): return PythonTransmitter.__activate(licence_key, proxy_host, proxy_user_name, proxy_user_password)
Version data entries
8 entries across 8 versions & 1 rubygems