๐Ÿ“ฆ wrussell1999 / royal-hackaway-v2

๐Ÿ“„ config.py ยท 8 lines
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()