Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to start learning twisted for socket servers creation. I want to add some useful features (like auth, and maybe some other). Maybe someone can point me to a good tutorial which will help me to start (+ maybe some other ideas)

share|improve this question
1  
You might want to also read answers to a very similar question which I asked. – Maiku Mori Dec 12 '09 at 1:52

closed as not constructive by Eitan T, Kev Jul 22 '12 at 14:12

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 32 down vote accepted

Look here: Twisted Web in 60 seconds. That's a group of blog posts describing step by step how to do lots of common stuff with Twisted, all written by Jean-Paul Calderone, the biggest contributor of Twisted. It's really where you should start.

After that, look at the Twisted core documentation then refer to the API and then into the source code.

Have fun!

share|improve this answer
4  
twistedmatrix.com/documents/12.0.0/web/howto/web-in-60/… now it in official docs – slav0nic May 11 '12 at 9:10

There's a great tutorial here - it's usually the one I send to new Twisty's :-)

http://krondo.com/blog/?page%5Fid=1327

Its worth remembering that Twisted programming is more of a thinking paradigm than a programming one. Also, it's worth doing away with the client server model too - in Twisted there's just one broker talking in either direction to another.

Take a look here after the above too:

http://twistedmatrix.com/documents/current/core/howto/pb-intro.html

Enjoy :-)

share|improve this answer
That's a nice list of tutorials. +1 – Maiku Mori Dec 12 '09 at 1:54

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