import json
import random
def get_random_picture():
with open("./jsons/pics.json") as f:
pictures = json.load(f)
return random.choice(pictures)