Re: [Tutor] asyncore/asynchat

2008-04-02 Thread Kent Johnson
WW wrote: > I'm really interested in learning some socket driven programming, > specifically asyncore/asynchat. I don't need the power or complication > of twisted, but I'm having serious trouble finding any decent tutorials > about asyncore/asychat... so where can I find a good tutuorial? Goo

Re: [Tutor] asyncore/asynchat

2008-04-02 Thread Andreas Kostyrka
Well, the source is easy enough to read. Although I wouldn't call Twisted a complication. If all you want is your async server Hello World example, asyncore is fine. If you intend to use the stuff for serious things, one usually starts to reinvent/reimplement Twisted anyway. Andreas Am Mittwoch,

[Tutor] asyncore/asynchat

2008-04-02 Thread WW
Hi, I'm new to the list, and fairly new-ish to python. I'd rate my programming experience as beginning-intermediate, and I've had some experience with c++ and VBS, and I'm currently a freshman CS major. Now to my question(s?). I'm really interested in learning some socket driven programming, spec