I'm developing a python CLI which will allow users to edit default settings stored in a settings.txt
file, but I don't know how to get the path to this file in my package or if there's a better way to access the file.
I'm using pkgutil.get_data(__package__, 'settings.txt').decode()
when I want to use particular settings, so if I could use pkgutil
that would be great