AWS and boto3 recipes for Python
The code creates a new sqs client, and then deletes the queue with the given queue URL.
Library: boto3
import boto3
# Create SQS client
sqs = boto3.client('sqs')
# Delete SQS queue
sqs.delete_queue(QueueUrl='queueurl')