I have to check versions of different software and their proper patches and I have written a python script that works (developed in my office laptop)
.
Now I have to run the scripts in my labs and the lab PCs do not have python and I am not allowed to install python on them.
Is there a way to run my python script in the labs?
Options I have seen
Convert my python to an EXE and run it.
If I choose this option, I do not prefer the use of the scheduler to run the EXE in a fixed time as the labs may be used for testing.
How do I create API for my code so I can call the API and run it as needed?
or is there a better way than I have missed?