Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ## Main Flow of Program ##
- def main():
- skills = {} # dictionary of all skills from JSON
- with open('skills.json') as f:
- skills = json.load(f)
- for skill, value in skills.items():
- value['tags'].append('skill') # all skills are in skill group
- value['tags'].append("class_" + name_to_name_key(clean(value['prof']))) # class group
- value['tags'].append("stat_" + name_to_name_key(clean(value['stat']))) # stat group
- make_dir(value) # make folders
- make_files(value) # make files
- make_default_icons(value) # make icons
- ## Main ##
- main()
Advertisement
Add Comment
Please, Sign In to add comment