pip install LucidDynamodb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from LucidDynamodb.Operations import DynamoDb | |
import os | |
import logging | |
import uuid | |
from boto3.dynamodb.conditions import Key | |
logging.basicConfig(level=logging.INFO) | |
AWS_ACCESS_KEY_ID = os.getenv("AWS_ACCESS_KEY_ID") | |
AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from LucidDynamodb.Operations import DynamoDb | |
import os | |
import logging | |
import uuid | |
from boto3.dynamodb.conditions import Key | |
logging.basicConfig(level=logging.INFO) | |
AWS_ACCESS_KEY_ID = os.getenv("AWS_ACCESS_KEY_ID") | |
AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY") |
- Set Python3 as a default python version on your MacOS.
# Step 1: Install Python3 using homebrew
$ brew install python
# Step 2: Look for the path where the latest python3 is available
dineshsonachalam@macbook ~ % ls -l /usr/local/bin/python*
lrwxr-xr-x 1 dineshsonachalam admin 24 May 30 11:31 /usr/local/bin/python -> /usr/local/bin/python3.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"apiVersion": "v2", | |
"appVersion": "1.0", | |
"description": "Helm chart for ADP NY Hackathon application", | |
"name": "adp-ny-hackathon-app", | |
"owner": "dineshsonachalam", | |
"version": "0.1.0" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Alice": "No", | |
"Bob": "Yes", | |
"Sue": "Yes" | |
}, | |
{ | |
"Alice": "", | |
"Bob": "No", | |
"Sue": "Yes" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Additional Comments": "Great co-workers, good work life balance", | |
"Annual Base Pay": "110000", | |
"Annual Bonus": "7000", | |
"Annual Stock Value/Bonus": "150000", | |
"Employer": "Apple", | |
"Gender": "Male", | |
"Job Title": "Software Engineer", | |
"Location": "Cupertino", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Additional Comments": "Great co-workers, good work life balance", | |
"Annual Base Pay": "110000", | |
"Annual Bonus": "7000", | |
"Annual Stock Value/Bonus": "150000", | |
"Employer": "Apple", | |
"Gender": "Male", | |
"Job Title": "Software Engineer", | |
"Location": "Cupertino", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"networks": { | |
"frontend": null | |
}, | |
"services": { | |
"backend": { | |
"depends_on": [ | |
"elasticsearch" | |
], | |
"environment": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"api": { | |
"dashboard": true, | |
"insecure": true | |
}, | |
"certificatesResolvers": { | |
"le": { | |
"acme": { | |
"email": "[email protected]", | |
"httpChallenge": { |