We're working on a python application for MAC OSX that should be pip-installable, and we want to automate the creation of a plist file during installation, but the file name must contain the OSX username in order for the application to work, eg. com.username.app.plist.
Q : How do I dynamically generate such a file in python ?
com.steven.app.plist, as of now, we should manually create the file in order for the app to work, we want to automate this task on installation !