mirror of
https://github.com/aljazceru/Image-Quote-Generator.git
synced 2025-12-19 15:04:24 +01:00
9 lines
229 B
Python
9 lines
229 B
Python
import json
|
|
|
|
|
|
def get_data(json_file):
|
|
with open(f'{json_file}', 'r', encoding='utf-8') as f:
|
|
jsonData = json.load(f)
|
|
verses: str = jsonData['verses']
|
|
refs: str = jsonData['references']
|
|
return verses, refs |