Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

delayed_job like queue for python

I need a queue to send data from ruby to python

The system is an application with a Ruby frontend and python backend and I'd rather not add another complicated piece. If it was ruby only I'd just go with delayed_job, but ruby->python is harder.

So

I'm looking for a simple database based queue (similar to delayed_job) for python for which I'm planning to hack a ruby 'producer' part.

Or just surprise me with a solution I haven't think of yet.

like image 715
Vitaly Kushner Avatar asked Nov 14 '22 02:11

Vitaly Kushner


1 Answers

Maybe you could have a look at Celery.

like image 58
Rod Avatar answered Nov 16 '22 17:11

Rod