Created
November 29, 2021 23:25
-
-
Save bnsheehy/00e2e439882e10b515f6bfb8332be65e to your computer and use it in GitHub Desktop.
This file contains 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
# Import credentials | |
import json | |
f = open("/Users/......./credentials.json") | |
credentials = json.load(f) | |
file_path = list(credentials.values())[0] | |
intrinio_key = list(credentials.values())[1] | |
aws_key = list(credentials.values())[2] | |
aws_secret_key = list(credentials.values())[3] | |
rds_host = list(credentials.values())[4] | |
rds_user = list(credentials.values())[5] | |
rds_password = list(credentials.values())[6] | |
rds_database = list(credentials.values())[7] | |
rds_charset = list(credentials.values())[8] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment