RQ (Redis Queue) is a simple Python library for queueing jobs and processing them in the background with workers. It is backed by Redis/Valkey and is designed to have a low barrier to entry. It integrates easily with your web or application stack. RQ requires Redis >= 5 or Valkey >= 7.2. Getting Started First, run a Redis/Valkey server. To put jobs on queues, you don’t have to do anything special,

