Я хочу из своего файла config.yaml импортировать одну строку prefix но не могу из-за странной ошибки
Консоль:
test.py:3: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read
https://msg.pyyaml.org/load for full details.
config = yaml.load("config.yaml")
Traceback (most recent call last):
File "test.py", line 5, in
print(config['prefix'])
TypeError: string indices must be integers
Код:
import yaml
config = yaml.load("config.yaml")
print(config['prefix'])