Skip to content

Instantly share code, notes, and snippets.

View ivanilves's full-sized avatar
🏋️‍♂️
Making Today Matter!

Ivan Ilves ivanilves

🏋️‍♂️
Making Today Matter!
View GitHub Profile
@ivanilves
ivanilves / save-sqs-queue.py
Created April 28, 2020 12:42 — forked from jric/save-sqs-queue.py
Saves all messages from an AWS SQS queue into a folder
'''
This version uses boto3 and python3.
'''
import argparse
import boto3
import json
import os
parser = argparse.ArgumentParser(description='Saves all messages from an AWS SQS queue into a folder.')