Re: Good libraries for network programming (not asynchronous)

2009-09-23 Thread Tvrtko
On Sep 24, 4:36 am, Jeff McNeil wrote: > I know this probably isn't overly helpful, but Twisted allows you to > defer a blocking call to a thread using a 'deferToThread' construct. > It exists so that you can run otherwise synchronous calls in an async. > manner. I'm already using this, but the l

Re: Good libraries for network programming (not asynchronous)

2009-09-23 Thread Jeff McNeil
On Sep 23, 8:29 pm, Tvrtko wrote: > Hello, > > Is there any good alternative to twisted for network programming which > doesn't involve asynchronous programming? I don't really like the > asynchronous model because it is hard to incorporate all other > blocking libraries that I have to use. And th

Good libraries for network programming (not asynchronous)

2009-09-23 Thread Tvrtko
Hello, Is there any good alternative to twisted for network programming which doesn't involve asynchronous programming? I don't really like the asynchronous model because it is hard to incorporate all other blocking libraries that I have to use. And the code doesn't look nice. I recently found the