Python socket programming tutorial
binarytides.com
Python socket programming tutorial
1–10 of 22 posts
Re: Python socket programming tutorial
#2Re: Python socket programming tutorial
#3Re: Python socket programming tutorial
#4Shouldn't the first step be install http://www.zeromq.org/ ? That is some seriously amazing stuff right there. Makes network programming (something I've avoided for years) almost trivial.
Re: Python socket programming tutorial
#5Shouldn't the first step be install http://www.zeromq.org/ ? That is some seriously amazing stuff right there. Makes network programming (something I've avoided for years) almost trivial.
Re: Python socket programming tutorial
#6Shouldn't the first step be install http://www.zeromq.org/ ? That is some seriously amazing stuff right there. Makes network programming (something I've avoided for years) almost trivial.
More appropriately, the first step should be to install Twisted.
Re: Python socket programming tutorial
#7Re: Python socket programming tutorial
#8Decent tutorial, though I find the official Python HOWTO to be a more thorough and appropriate introduction to sockets for the complete newbie... http://docs.python.org/howto/sockets.html
I would have saved hours while working on (and possibly completed) the recent Stripe CTF. Frankly, I started to dislike the python docs thoroughly. However, I'm very much looking forward to the much-rumored new docs--I very much dig the language.
As an example to my point, however, look at the two side-by-side as an aspiring tinkerer with the desire to send data over a socket. To me, the aforementioned tutorial is miles ahead of the python docs.
Re: Python socket programming tutorial
#9Re: Python socket programming tutorial
#10Decent tutorial, though I find the official Python HOWTO to be a more thorough and appropriate introduction to sockets for the complete newbie... http://docs.python.org/howto/sockets.html
As a python newbie, I couldn't disagree more. I would have saved hours while working on (and possibly completed) the recent Stripe CTF. Frankly, I started to dislike the python docs thoroughly. However, I'm very much looking forward to the much-rumored new docs--I very much dig the language. As an example to my point, however, look at the two side-by-side as an aspiring tinkerer with the desire to send data over a so…
Both tutorials are good, but I think a Python programmer totally new to network programming, which is the audience of the OP, is better served first reading that HOWTO before following the code samples...