This line will create an IOError if the script is run from the Main.py but not installed.
with open("config.yml", 'r') as ymlfile:
IOError: [Errno 2] No such file or directory: 'config.yml'
I suggest to first check the current dir, then load the config.yml file accordingly.
This line will create an IOError if the script is run from the Main.py but not installed.
I suggest to first check the current dir, then load the
config.ymlfile accordingly.