Help turning code into a module

2005-12-20 Thread dylpkls91
Hi all, I am working on a little program for home automation under the X10 protocol. I have given up using a Palm device for input, so I have resorted to using voice recognition, which I knew nothing about. However, I found a nice little script on the internet that does exactly what I need, and it

Re: Execute Commands on Remote Computers over Network

2006-07-12 Thread dylpkls91
I'm sorry, I should have clarified. I want to execute commands on networked computers running Windows XP. Thank you for you concern anyway. Does this mean that the Paramiko module only works on Unix systems? -- http://mail.python.org/mailman/listinfo/python-list

Re: Execute Commands on Remote Computers over Network

2006-07-13 Thread dylpkls91
Ben Sizer wrote: > Paramiko appears to use SSH, which (as far as I know) > connects to a computer running an sshd program or equivalent and > executes commands via that program. If there's no sshd running on the > target, you can't do anything. Thanks for the clarification. Can I get 'sshd' or an

Problem Solved

2006-07-13 Thread dylpkls91
Thank you all for your responses. I have managed to figure out a solution using XML RPC which fits my needs perfectly. -- http://mail.python.org/mailman/listinfo/python-list

XMLRPC Solution Code

2006-07-17 Thread dylpkls91
[EMAIL PROTECTED] wrote: > Mind posting it for us lesser beings? ;) Not at all. I have yet to test it on networked computers, but it works fine when I run both scripts on my machine. The hard part now is getting the server code to run as a Windows service- argh!!! I can get it installed and start

Re: XMLRPC Solution Code

2006-07-18 Thread dylpkls91
Frank Millman wrote: > I use something called 'srvany' - >http://support.microsoft.com/kb/q137890/ I am familiar with srvany. Seems like it is a whole bunch easier than the PyWin32 stuff. I'll write a wrapper script that can be used like this: createservice.py -myservicename -myservicepath or

Execute Commands on Remote Computers over Network

2006-06-26 Thread dylpkls91
I have been researching this topic and come up with some code to make it work. It uses SSL and requires the 3rd party package Paramiko (which requires PyCrypto). However, at this moment I have no network to test the code on! Trying to connect to localhost (127.0.0.1) fails. Before I buy network com

Re: Execute Commands on Remote Computers over Network

2006-06-27 Thread dylpkls91
Lawrence D'Oliveiro wrote: > In article <[EMAIL PROTECTED]>, > "dylpkls91" <[EMAIL PROTECTED]> wrote: > > >I have been researching this topic and come up with some code to make > >it work. It uses SSL and requires the 3rd party package Paramik

How to initiate HotSync of Palm device?

2006-04-10 Thread dylpkls91
I am writing a program that uses the Palm handheld as a sort of input device. However, the code that communicates with it thru the serial port locks the port up, so if the user initiates a HotSync on the device, the operation fails. I would like to have a setup where the user presses a button on my

Re: How to initiate HotSync of Palm device?

2006-04-11 Thread dylpkls91
I posted a similar question on comp.sys.palmtops.pilot and am waiting for a response. Thank you for your reply; the acknowledgement is appreciated. I believe that a possible solution would be to use a command line option of HotSync Manager, but I am not sure what the correct option would be. Thanks