Skip to content

Instantly share code, notes, and snippets.

View cloudwithankit's full-sized avatar
😃
I may be slow to respond.

Ankit Agrawal cloudwithankit

😃
I may be slow to respond.
View GitHub Profile
@vincentclaes
vincentclaes / moto_mock_s3_example.py
Last active October 21, 2020 16:50
example of how to use moto
import boto3
import json
import os
import unittest
from moto import mock_s3
from my_project.lambda_functions import lambda_handler
class TestLambda(unittest.TestCase):
@mock_s3
@ppflrs
ppflrs / Convert "application octet-stream; charset=binary" to ASCII Raw
Last active September 9, 2024 07:01
Convert "application/octet-stream; charset=binary" to ASCII
cat $BIN_FILE | tr -d '\0' > $NEW_FILE