Open stryngs opened 3 years ago
It would appear that my editor has removed spaces on blank lines. It makes the diff hard to read, apologies for that...
Hi stryngs, thanks for the PR. Looks good, except with the addition of the requirements.txt file I wonder if == on the versions could break installs on some systems? Maybe we separate out the requirements.txt PR from the other changes?
Hi stryngs, thanks for the PR. Looks good, except with the addition of the requirements.txt file I wonder if == on the versions could break installs on some systems? Maybe we separate out the requirements.txt PR from the other changes?
Hi @ghostop14 -- You can remove the ==
I think >= works as well, but have never used.
It would appear that my editor has removed spaces on blank lines. It makes the diff hard to read, apologies for that...
GitHub has a hide whitespace changes feature. adding &w=1
to link or
https://github.com/ghostop14/sparrow-wifi/pull/63/files?diff=unified&w=1
This PR serves to deal with regex and how iw is used. At some point I aim to PR a full scapy functionality, but for now I need to learn how this repo works and so I'm eyeballing and shooting from the hip on general patches that can be done in the name of speed.
Before this patch re.compile() was called everytime that iw would scan. This patch removes that and makes it compile only once, saving cycles.
Testing shows that the threads are safe and the GUI updates as expected.