Reputation: 4799
Is there a Python module that you can use to get execution stats for a piece of code or a python app ? For example something like:
get_stats.start()
#python code
stats = get_stats.end()
The stats I am interested in are cpu usage, ram usage and execution time
Upvotes: 0
Views: 1311