How can I make a python wrapper script that would measure the execution time of another script or another .py file using time?
You can use the timer module
from timeit import default_timer as timer
start = timer()
function_you_want_to_time()
# or import your script here
# import script_to_time
end = timer()
elapsed = str(end - start)
print(f'Run time in seconds: {elapsed}')