This module makes it easy to check system platform type and gain admin rights for scripts that require it.
This utilises PyUAC on the Windows platform and requires the use of Sudo on *NIX systems for admin rights escalation.
The purpose of this is to try and make people's life easier when needed more rights for python scripts.
There are 3 functions of this module
- The sysinfo() function outputs whether the script recognises which type of system it's running on.
Example: On a Windows system, the script will output,"You are running on a Windows-based system."
-
The admincheck() function will output a "Yes" or "No", depending on if it has root or admin privilege
-
The runadmin() function will utilise ctypes function or Sudo (for linux) to relaunch script if does not have root or admin privilege
- This module requires PyUAC and PyWin32 package to be installed on a Windows system.
- This module requires Python 3, and does not support Python 2.
See the LICENSE file.