views:

911

answers:

5

Hi there, i'm begining on a new proyect that need to collect data from some VoIP network equiment, and i thinking to make a python app using some network library and need know some intersting Books or web resources about the netwoking library in python.

best regards.

+1  A: 

See this previous post on Python sockets.

Brian R. Bondy
+1  A: 

See "Foundations of Python Network Programming"

Kevin Little
thanks good books i will get it, right now.thanks a lot.
Peter GA.
+1  A: 

Python Essential Reference

I find that Python Essential Reference serves as a good reference for many topics in Python, including networking.

Readonly
A: 

Programming Python and Python Cookbook are excellent resources. You may also want to look at the Twisted framework. And always keep a shortcut handy to python.org.

Joe Skora
+2  A: 

I wrote a SIP proxy and other VoIP tools using Twisted: http://twistedmatrix.com It's an excellent networking engine for any sort of task.

You can view the VoIP code I wrote here: http://divmod.org/trac/browser/trunk/Sine/

Allen
Thanks allen, really usefull framework.
Peter GA.