解决 flutter 升级3.7.0 提示[X] Windows Version
升级完 flutter3.7.0提示如下错误 Flutter assets will be downloaded from https://storage.flutter-io.cn. Make sure you trust this source! Doctor su...
2023新年第一天,python+scapy监听 分析封包
两种方式获得数据,1.实时抓包,2.读取 pcap文件 #scapy抓包使用 sniff() 函数 def sniff(count=0, store=1, offline=None, prn=None,filter=None, L2sock...
Python 并口(LPT)打印
printer = open('LPT1', 'wb') bs = bytearray(u'凭证\n姓名\n年龄\n', encoding='gbk') printer.write(bs) printer.flush() printer.close() 打包某个文...