Re: getting local area connection information through python in windows

2010-05-22 Thread moijes12
On May 22, 1:12 pm, sturlamolden wrote: > On 22 Mai, 09:38, moijes12 wrote: > > > I need to get the details of Local Area connection information(network > > interface) like packets sent,packets recieved,duration etc. I have to > > do this in Windows using python. > >>> import subprocess as sp > >

Re: getting local area connection information through python in windows

2010-05-22 Thread sturlamolden
On 22 Mai, 09:38, moijes12 wrote: > I need to get the details of Local Area connection information(network > interface) like packets sent,packets recieved,duration etc. I have to > do this in Windows using python. >>> import subprocess as sp >>> p = sp.Popen("netstat -s", shell=False, bufsize=

getting local area connection information through python in windows

2010-05-22 Thread moijes12
Hi I need to get the details of Local Area connection information(network interface) like packets sent,packets recieved,duration etc. I have to do this in Windows using python. I tried looking under the socket module and also googling,but did not find anything that I could use for windows,though