Re: newbie tcp/ip question

2007-06-24 Thread Stephen R Laniel
On Sun, Jun 24, 2007 at 02:52:25PM -0500, Zachary Manning wrote: > I want to send some hex characters as a string literal to port 7142 and > to a specific ip address. How do I do that in python? Does this cover what you want to do? http://docs.python.org/lib/socket-example.html -- Stephen R. La

Re: newbie tcp/ip question

2007-06-24 Thread Jacek Trzmiel
Hi, Zachary Manning wrote: > I'm having a hard time tracking down a way to open up a tcp/ip client > connection and simply sending a string to the port I've opened up. > > For instance > > I want to send some hex characters as a string literal to port 7142 and > to a specific ip address. How d

newbie tcp/ip question

2007-06-24 Thread Zachary Manning
Hello all, I'm having a hard time tracking down a way to open up a tcp/ip client connection and simply sending a string to the port I've opened up. For instance I want to send some hex characters as a string literal to port 7142 and to a specific ip address. How do I do that in python? than