pierrepo / grodecoder

GroDecoder extracts and identifies the molecular components of a structure file (PDB or GRO) issued from a molecular dynamics simulation.
https://grodecoder.streamlit.app/
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Save execution time in the JSON file #48

Closed pierrepo closed 1 month ago

pierrepo commented 1 month ago

This information could be useful.

Save execution time in seconds. Example:

import time

start = time.perf_counter()
run_long_function()
print(time.perf_counter() - start)