Script execution

This commit is contained in:
2019-04-02 13:48:58 +02:00
parent 7c5badea52
commit 429e30f485

View File

@@ -123,7 +123,10 @@ if __name__=='__main__':
conn = get_stats_connection()
start= "06/02/19" #"06/02/19 13:27:56.124"
end= "16/03/19" #"29/04/19 13:27:56.124"
print_stats(["%test1.py","%test2%"], start, end)
print_cmd_stats ("%test1.py", start, end)
cmds = ["%test1.py","%test2%"]
print_stats(cmds, start, end)
for cmd in cmds:
print_cmd_stats (cmd, start, end)
conn.close()