You've already forked blizzard-wow-game-data-apis
10 lines
167 B
Python
10 lines
167 B
Python
|
|
import os
|
|
|
|
# pwd
|
|
pwd = os.path.dirname(os.path.realpath(__file__))
|
|
# raw json files
|
|
raw = os.path.join(pwd, 'raw')
|
|
# crafted jsons
|
|
craft = os.path.join(pwd, 'craft')
|