1 2 3 4 5 6 7 8import json with open('config/caller.json', 'r') as config_file: config = json.load(config_file) with open('config/private.key', 'r') as key_file: private_key = key_file.read()
1 2 3 4 5 6 7 8
import json with open('config/caller.json', 'r') as config_file: config = json.load(config_file) with open('config/private.key', 'r') as key_file: private_key = key_file.read()