Hi,
I've a config.py file with the following content:
TIA
I've a config.py file with the following content:
from mqtt_as import config config['ssid'] = 'my router' config['ssid_pw'] = 'pwd' config['mqtt_user'] = 'user' config['mqtt_pw'] = 'pwd' config['pub_topic'] = 'main/esp' config['sub_topic'] = 'main/esp/32/relays'I know how to read from it but how do I modify say, the 'ssid_pw' password string?
TIA