xxxxxxxxxx
## ⚠️ Long Solution ⚠️
## Start Of Message.py
## Imports
import json
## Load up the file
with open('config.json') as config_file:
data = json.load(config_file)
## Refferences
message = data['message']
print(message)
## End Of Message.py
## Start Of config.json
{
"message" : "Hello World"
}
## End Of config.json
>>> python3 Message.py
Hello World