So I used to be able to import scapy's base64_bytes
by using from scapy.all import base64_bytes
. However, I get this error when I do that:
PIP package scapy-python3 used to provide scapy3k, which was a fork from scapy implementing python3 compatibility since 2016. This package was included in some of the Linux distros under name of python3-scapy. Starting from scapy version 2.4 (released in March, 2018) mainstream scapy supports python3. To reduce any confusion scapy3k was renamed to kamene.
I tried renaming it to from kamene.all import base64_bytes
, but still no luck. Is there any other alternative to base64_bytes
or am I just importing it incorrectly?