If I include following line in my python source file
from scapy.all import *
I get this error
from scapy.all import * Impor
I think this may be a problem with your version:
If you are using Scapy v1.X:
from scapy import *
Otherwise, with Scapy V2.X+
Is the way to go.
Hope that helps!