20 lines
415 B
Python
20 lines
415 B
Python
import json
|
|
|
|
# Helper functions
|
|
def load_animeguess_anime_list():
|
|
"""
|
|
Load in the parsed anime list
|
|
"""
|
|
global animeguess_anime_list
|
|
f = open('app/parsed-anime-list-mini.json')
|
|
animeguess_anime_list = json.load(f)
|
|
|
|
def return_animeguess_anime_list():
|
|
"""
|
|
Return the parsed anime list
|
|
|
|
Returns:
|
|
JSON:
|
|
parsed anime list
|
|
"""
|
|
return animeguess_anime_list |