import pyshark
capture = pyshark.LiveCapture(interface = 'wlan0')
capture.sniff(timeout=1)
print(capture)
I get this as result: "LiveCapture (0 packets)"
But how is possible to get 0 packets all the time?
import pyshark
capture = pyshark.LiveCapture(interface = 'wlan0')
capture.sniff(timeout=1)
print(capture)
I get this as result: "LiveCapture (0 packets)"
But how is possible to get 0 packets all the time?