Skip to content

avocardio/timer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

timer

A small import for timing files (saves you about 10 seconds of hard work). In under 50 lines of code. No further packages needed.

It wraps your file in:

import time
start = time.time()
...
end = time.time()
print(end - start)

Usage

Get the file via:

wget https://raw.githubusercontent.com/avocardio/timer/main/timer.py

Then import it in your file:

from timer import timer
timer()
...

And run the file with:

python your_file.py -t

Inspired by Geohot's debugging optimization scripts and the search for the ever faster implementation.

About

A small import for timing files (saves you about 10 seconds).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages