I am using scrapy-rabbitmq
to fetch the url from RabbitMQ into my scrapy.I am using the following in my settings.py
file
RABBITMQ_CONNECTION_PARAMETERS = {"credentials": pika.PlainCredentials('test', 'test'),'host': '10.0.12.103', 'port': 5672}
But I am unable to connect to the rabbitmq .I am getting the foloowing error
AttributeError: 'module' object has no attribute 'AsyncoreConnection'
I have asked a another question that how to consume the data from RabbitmQ using scrapy here