kietto
kietto

Reputation: 41

What should i use for a Remote Desktop Control?

Hi everybody i'm new to stackoverflow and to python programming :-)

Can somebody point me in the right direction or suggest me a good way to do this..?

The software I'd like to write is a kind of "multiple remote control", it has:

Given that I'm new to python i started looking and using these libraries:

wxWidget for the gui

Twisted for the network connection, because it's an easy way to implement a multicast UDP .. but is udp the right choise to send images to all the clients? =/

PIL (Python Imaging Libary) images stuff and to grab the screenshots on the Server machine to send to the clients .. this is the point where I stopped to think to all the possible solutions ... (I wasn't able to send the image to the client, I tried converting it to string but the UDP message was not that big :) )

I've seen many suggest the use of a VNC application .. is it easy to develop my software as described around it (actually i have no idea how..), or grabbing the screen continuously with PIL and sending somehow the images to the clients is an acceptable solution?

Thanks in advance for any help :-)

Upvotes: 4

Views: 2529

Answers (2)

Eli Bendersky
Eli Bendersky

Reputation: 273386

Take a look at the VNC viewer implemented in Python.

Upvotes: 4

Vijay Mathew
Vijay Mathew

Reputation: 27164

Teamtalk is a Python IM software that also has Remote Desktop access. You can download the source and look at the implementation.

Upvotes: 2

Related Questions