https://realpython.com/python-pathlib/
>>> from configparser import ConfigParser >>> path = pathlib.Path('config.txt') >>> cfg = ConfigParser() >>> cfg.read(path) # Error on Python < 3.6 TypeError: 'PosixPath' object is not iterable >>> cfg.read(str(path)) # Works on Python >= 3.4 ['config.txt']
Комментариев нет:
Отправить комментарий