"""SNS connector.""" import boto3 def get_client(): """Get boto3 SNS client.""" return boto3.client('sns') client = get_client()