I am creating a cli application in python using Click and wants to store data as follows:
- username and passwords preferrably in json
- some data related to that user in json file format
but I don't want users of that cli application to have access to those files. Users will use that cli locally and thus will have access to files of that system
How can I achieve that?