Skip to content

Instantly share code, notes, and snippets.

View sats17's full-sized avatar
:octocat:
alive

Satish Kumbhar sats17

:octocat:
alive
View GitHub Profile

############################################################################################################ ################## ############################# ################## #############################

              This Gist collection contains all localstack related examples

################## ############################# ################## ############################# ############################################################################################################

@sats17
sats17 / consul-cheatsheet.md
Last active December 23, 2024 06:36
Contains cheetsheet for consul
  1. Start consul cluster -

consul agent -server -bootstrap-expect=1 -data-dir=consul-data -ui -bind=127.0.0.1

  1. put key-values

consul kv put config/key value

  1. get key-values -

consul kv get config/key

  1. get keys from consul with host and acl-token(Your own hosted consul) -

############################################################################################################ ################## ############################# ################## #############################

              This Gist collection contains all scripts for python

################## ############################# ################## ############################# ############################################################################################################

## dependency
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swaggerhub-maven-plugin</artifactId>
<version>1.0.8</version>
</dependency>
## plugin
<plugin>
<groupId>io.swagger</groupId>

=======================================================================================================

                    All-about-reactive-programming-java

=======================================================================================================

@sats17
sats17 / All-about-core-java.md
Last active December 23, 2024 06:09
Gist contains information about core java things.

===========================================================================================================================

===========================================================================================================================

                            All about core java

===========================================================================================================================

===========================================================================================================================

version: '3.8' services: localstack: container_name: "localstack-container" image: localstack/localstack:latest ports: - "4566:4566" - "9200:4571" environment:

  • SERVICES=es, s3, ec2, dynamodb, sqs
import boto3
dynamo_db_connection = boto3.resource('dynamodb', region_name='us-east-1')
anime_table_name = os.environ['anime_table_name']
def lambda_handler(event, context):
print("Incoming event ", event)
anime_name = str(event["anime_name"])
response = dynamodb_connection.query(
import unittest
import boto3
import os
from moto import mock_dynamodb
from unittest.mock import patch
@mock_dynamodb # Decorator applied to whole class. This will provides mock for each dynamodb calls which creates inside this class.
@patch.dict(os.environ, {
import unittest
class LambdaFunctionTest(unittest.TestCase):
def setUp(self) -> None:
pass
def tearDown(self) -> None:
pass