stopwatch-py is a lightweight Python library providing a simple stopwatch functionality to measure elapsed time. It is currently at version 2.0.1 and has a low release cadence, primarily focusing on minor improvements and maintenance.
pip install stopwatch-pyVerified import paths — ran on the pinned version, not inferred.
Initializes a stopwatch, measures time, stops and resumes, then resets it.
Separate method calls. Instead of `s.stop().duration`, use `s.stop(); print(s.duration)`.
Ensure your Python environment is 3.5 or newer. If you must use an older Python version, pin `stopwatch-py<2.0.0`.
Remove any references to `stopwatch.__github__` from your code.
Separate the method calls: `s.stop(); print(s.duration)`.
Upgrade your Python interpreter to version 3.5 or newer, or downgrade the library to `pip install stopwatch-py==1.x`.
Update your import statement to `from stopwatch import Stopwatch`.
No dependency data recorded yet.