i have a file like this:
{"user1": {"Login": "Bob", "Secret": "passkey1"}}
{"user2": {"Login": "John", "Secret": "passkey2"}}
with open('users') as data_file:
data = [json.loads(line) for line in data_file]
How i can iterate on user1,2 etc to get they 'Secret'? Users just an example