Permit formatting of time #1
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I am using the tictoc package to time my neural network calibration runs, which typically results in timeframes of hours rather than seconds. Please consider adding some way for developers to format the returned time, rather than having to keep copy/pasting it into the console and dividing by 60 a few times.
On delving through Python's assorted date-time libraries, possibly the easiest way to do this would be to (optionally) return the raw seconds value from the toc() call instead of printing it to the console, so that the developer can then convert it to an appropriate string. So you'd be able to write code like:
"Elapsed time: {d.hour} hours {d.minute} minutes {d.second} seconds".format(datetime.time(second=tictoc.toc(pass=True))
However I am unfamiliar both with Python extending and with Rust, so can't confirm whether this is viable.
Hi, thanks for raising this.
If I understand you correctly, I think that what you described is already possible in v0.2.0.
You can assign the output of your
toc()
call to a variable, which will be a struct containing the results. You can then useresults.seconds
to display the elapsed time as you please.Here is an example using
datetime.timedelta
to format the output.This should print
"Elapsed time was 0:01:10.000136"
, showing 0 hours, 1 minute and 10 seconds.I'll consider this as a feature request, to have this formatting ability built in to the module.