Scapy import issue
I have installed scapy-http in my machine, but getting error that "cannot import name 'http' " error. Please refer below screen shot and help me to resolve this issue.

Have you tried?
from scapy_http.http import *
I am using Python 3 and this seemed to be needed after I installed it via pip which is slightly different to the instructions.
Faced the same issue as
I have installed scapy-http in my machine, but getting error that "cannot import name 'http' " error. Please refer below screen shot and help me to resolve this issue.
Faced the same issue. Got it resolved after insatlling scapy_http in python. wrong: pip install scapy http correct: pip install scapy_http Issue: Earlier while installing , I missed _ in installing.
Have you tried?
from scapy_http.http import *
I am using Python 3 and this seemed to be needed after I installed it via pip which is slightly different to the instructions.
I think it should be added to the readme that you need to import it like this even though you installed using pip