Reputation: 154
Basically i have a bot in my django webapp when given your social media credentials it manages your one of social media accounts i was able to succesfully run it while the client is still on website and as you would expect it stopped when the client closed the website. Is there any way to store the credentials and then keep the bot running even after user leaves website and so that bot still manages the account? The bot is mostly making few requests and API calls. Thank You
Upvotes: 2
Views: 422
Reputation: 3860
Lots of options.
Dramatiq
is also a library for organizing a task queue, periodic
is a task scheduler. Less popular, more lightweight, and quite stable. Entry threshold is lesser than celery
, as for me.Upvotes: 3