RDP using python

I want to create a Python script that allows me to connect to a remote machine through an RDP connection. I would really like to know if there are certain APIs in Python that I can use.

+4
source share
1 answer

I don't know, but you could write a cython wrapper around libxrdp that contains library functions for the rdp client. However, the library is rarely documented. There is also FreeRDP (which I don't know), but I'm not sure if this is a much better alternative.

+3
source

All Articles