On 22 Mai, 09:38, moijes12 <moije...@gmail.com> 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=4096,
              stdin=sp.PIPE, stdout=sp.PIPE, stderr=sp.PIPE)

>>> print ''.join(p.stdout.readlines())

>>> p.terminate()

There are other switches for the netstat command as well.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to