up vote 6 down vote favorite
share [g+] share [fb]

I want to open a TCP client socket in Python. Do I have to go through all the low-level BSD create-socket-handle / connect-socket stuff or is there a simpler one-line way ?

What I'm looking for is something similar to fsockopen in PHP.

link|improve this question

feedback

4 Answers

up vote 19 down vote accepted

Opening sockets in python is pretty simple. You really just need something like this:

import socket
sock = socket.socket()
sock.connect((address, port))

and then you can send() and receive() like any other socket

link|improve this answer
feedback

For developing portable network programs of any sort in Python, Twisted is quite useful. One of its benefits is providing a convenient layer above low-level socket APIs.

link|improve this answer
feedback

OK, this code worked

s = socket.socket()
s.connect((ip,port))
s.send("my request\r")
print s.recv(256)
s.close()

It was quite difficult to work that out from the Python socket module documentation. So I'll accept The.Anti.9's answer.

link|improve this answer
For future reference, it's typically sound practice to used a larger parameter for socket.recv() than 256 bytes. I've frequently seen 4096 used. – junkforce Sep 16 '08 at 3:18
Yes, good idea junkforce. What I was really after was to read a line of text, I'm now using the makefile() function to buffer the received data which works a treat. – Adam Pierce Sep 17 '08 at 4:33
You forgot to check the return value of send. – Jean-Paul Calderone Mar 25 '11 at 23:46
feedback

Python's socket module should be helpful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.