2014-08-06 11:43:40 +02:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
from pubsublogger import publisher
|
|
|
|
|
2014-08-18 18:35:08 +02:00
|
|
|
import Helper
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
|
2014-08-18 18:35:08 +02:00
|
|
|
if __name__ == "__main__":
|
2014-08-22 17:35:40 +02:00
|
|
|
publisher.port = 6380
|
2014-08-06 11:43:40 +02:00
|
|
|
publisher.channel = "Queuing"
|
|
|
|
|
2014-08-18 18:35:08 +02:00
|
|
|
config_section = 'PubSub_Categ'
|
|
|
|
config_channel = 'channel_3'
|
2014-08-20 15:54:21 +02:00
|
|
|
subscriber_name = 'urls'
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-19 19:07:07 +02:00
|
|
|
h = Helper.Redis_Queues(config_section, config_channel, subscriber_name)
|
2014-08-19 19:53:33 +02:00
|
|
|
h.zmq_sub(config_section)
|
2014-08-19 19:07:07 +02:00
|
|
|
h.redis_queue_subscribe(publisher)
|