I have written a Python script to save time, which creates and writes files to my machine locally. (Python 3)
I've turned it into an executable using PyInstaller, but in order to execute it the executable needs permissions on their machines - and doing so manually isn't going to be easy for some of them.
It'll need both permission to run and to create files.
Is there a way I can configure the executable to grant itself permissions?
(ie. prompt the user for a the admin password or something like that).
I've searched elsewhere for an answer but I think my lack of knowledge of the correct terms for this is getting in the way.