예제 #1
0
 def __init__(self, append_sys_path, append_environ_path, **kwargs):
     Client64.__init__(self,
                       'cli32',
                       append_sys_path=[os.path.dirname(__file__)] +
                       append_sys_path,
                       append_environ_path=append_environ_path,
                       **kwargs)
예제 #2
0
 def __init__(self):
     """
     Communicates with 32-bit LCDriver.dll library via lcserver32.py.
     """
     Client64.__init__(self,
                       module32='lcserver32',
                       append_sys_path=os.path.dirname(__file__))
예제 #3
0
 def __init__(self):
     # specify the name of the corresponding 32-bit server module, dotnet32, which hosts
     # the 32-bit .NET library -- dotnet_lib32.dll.
     Client64.__init__(self,
                       module32='dotnet32',
                       append_path=os.path.dirname(__file__))
예제 #4
0
 def __init__(self):
     # specify the name of the corresponding 32-bit server module, kernel32, which hosts
     # the Windows 32-bit library -- kernel32.dll
     Client64.__init__(self,
                       module32='kernel32',
                       append_path=os.path.dirname(__file__))
예제 #5
0
 def __init__(self):
     # specify the name of the corresponding 32-bit server module, fortran32, which hosts
     # the 32-bit FORTRAN library -- fortran_lib32.
     Client64.__init__(self,
                       module32='fortran32',
                       append_path=os.path.dirname(__file__))
예제 #6
0
    def __init__(self, quiet=False):
        Client64.__init__(self, module32='dummy32', append_path=os.path.dirname(__file__), quiet=quiet)

        self._quiet = quiet
        if not quiet:
            print('Client running on ' + sys.version)
예제 #7
0
 def __init__(self):
     # specify the name of the corresponding 32-bit server module, cpp32, which hosts
     # the 32-bit C++ library -- cpp_lib32.
     Client64.__init__(self,
                       module32='cpp32',
                       append_sys_path=os.path.dirname(__file__))
예제 #8
0
 def __init__(self):
     # specify the name of the corresponding 32-bit server module, labview32, which hosts
     # the 32-bit LabVIEW library -- labview_lib32.dll
     Client64.__init__(self, module32='labview32', append_sys_path=os.path.dirname(__file__))
예제 #9
0
 def __init__(self):
     # Use the default '127.0.0.1' address to start the 'my_server.py' module
     Client64.__init__(self, module32='modules/imic_my_server')