Python MoveSample
-----------------

The sample uses Python 3.6.5 32bit and pythonnet 2.4.1.

Install pythonnet via pip:

pip install git+https://github.com/pythonnet/pythonnet

If this fails, you need to upgrade your pip or setuptools first:

python -m pip install --upgrade pip
python -m pip install --upgrade pip setuptools wheel

In almost all cases it will be much more useful to use C# instead of Python, as Python is not the right language for an inherently asynchronous, event driven task, due to being single threaded.

Problems you will have:

- Performance
- Multithreading
- Missing Intellisense

Recommendation:
---------------

There is an TCP server application available that runs on Windows, Linux and Macos, either as an application or as a service and that can control an unlimited number of ILMUs by simple telnet commands. Maybe that could be another option to interface with Python, as you can easily open up tcp sockets with python.
