Skip to main content

Boto3 SQS integration for Flask

Project description

Initialize

from flask_boto_sqs import FlaskBotoSQS

flask_boto_sqs = FlaskBotoSQS(app)

or:

flask_boto_sqs = FlaskBotoSQS()
flask_boto_sqs.init_app(app)

Configuration

Put kwargs for FlaskBotoSQS to ‘FLASK_BOTO_SQS’ in your Flask configuration.

app.config['FLASK_BOTO_SQS'] = {
    'region': 'ap-northeast-1',
    'aws_access_key_id': 'YOUR_AWS_ACCESS_KEY_ID',
    'aws_secret_access_key': 'YOUR_AWS_SECRET_ACCESS_KEY'
}

Usage

# https://boto3.readthedocs.org/en/latest/guide/sqs.html

q = flask_boto_sqs.sqs.get_queue_by_name(QueueName='your-queue-name')

# write
resp = q.send_message('What a lovely day!')
print resp.get('MessageId')

# read
for m in q.receive_messages():
    print m.body
    m.delete()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-BotoSQS-0.2.0.tar.gz (2.3 kB view details)

Uploaded Source

File details

Details for the file Flask-BotoSQS-0.2.0.tar.gz.

File metadata

File hashes

Hashes for Flask-BotoSQS-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e4938bea0f39120f54ed7a6c26422a0120e773b3b7d63aa293394d42702508b3
MD5 bc2825f784c7360e0c92224bc3facb29
BLAKE2b-256 36a5b14c0c1cc3a28f40d820cf3b38fe8f820c15cfbdb5bcd2181266ecd836ce

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page