Skip to content

Instantly share code, notes, and snippets.

@bnsheehy
Created November 29, 2021 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bnsheehy/00e2e439882e10b515f6bfb8332be65e to your computer and use it in GitHub Desktop.
Save bnsheehy/00e2e439882e10b515f6bfb8332be65e to your computer and use it in GitHub Desktop.
# 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