ail-framework/bin/ZMQ_PubSub_Categ_Q.py

36 lines
845 B
Python
Raw Normal View History

#!/usr/bin/env python2
# -*-coding:UTF-8 -*
"""
The ZMQ_PubSub_Categ_Q Module
============================
This module subscribe to a Publisher stream and put the received messages
into a Redis-list waiting to be popped later by others scripts.
..note:: Module ZMQ_Something_Q and ZMQ_Something are closely bound, always put
the same Subscriber name in both of them.
Requirements
------------
*Running Redis instances.
*Should register to the Publisher "ZMQ_PubSub_Tokenize"
"""
2014-08-18 16:35:08 +00:00
from pubsublogger import publisher
2014-08-18 16:35:08 +00:00
import Helper
2014-08-18 16:35:08 +00:00
if __name__ == "__main__":
publisher.channel = 'Queuing'
2014-08-18 16:35:08 +00:00
config_section = 'PubSub_Words'
config_channel = 'channel_0'
subscriber_name = 'categ'
2014-08-19 17:07:07 +00:00
h = Helper.Redis_Queues(config_section, config_channel, subscriber_name)
h.zmq_sub(config_section)
2014-08-19 17:07:07 +00:00
h.redis_queue_subscribe(publisher)