0

I am getting 2 tshark.exe popup windows while executing FileCapturecode below. Can someone let me know how to hide those windows?

import pyshark
import binascii
import struct

cap = pyshark.FileCapture(r"C:\Users\step16.pcapng", display_filter= r"data contains f1:f3:f1:f2")
j=0
for i in cap:
      caplen = cap[j].data.len
      modvalue = "caplen % 2"
      if (modvalue != 0):
          reqlen = caplen

      j =  j + 1

0 Answers0