Hi everyone,
I have two python cgi pages (index, display), what i need to do is calculate time frame between the execution.
Work flow:
- Index.py (submit)
- After submit it redirect to display.py page
- display.py page has got class with execute(),display() &init_main() functions
- In init_main() i have created class object which access to above functions
- I need to calculate time interval between the submit (index.py) to execute() end, so i can show user how much time does different weighted file takes to execute
Hoping to see your suggestions
Thanks