I want to use Amazon SQS as broker backed of Celery. There’s the SQS transport implementation for Kombu, which Celery depends on. However there is not enough documentation f
Update for Python 3, removing backslashes from the AWS KEY.
from urllib.parse import quote_plus BROKER_URL = 'sqs://{}:{}@'.format( quote_plus(AWS_ACCESS_KEY_ID), quote_plus(AWS_SECRET_ACCESS_KEY) )