I installed the chronometer module 1.0 for python 3.4: chronometer module
I tried to use the start () attribute of the Chronometer method, but it gives an error: it requires a 'self' argument
>>>from chronometer import Chronometer as crmt
>>>crmt.start()
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
crmt.start()
TypeError: start() missing 1 required positional argument: 'self'
>>>crmt.start(self)
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
crmt.start(self)
NameError: name 'self' is not defined
Can someone explain how to solve this problem and why the chronometer is working correctly, and what is the code for writing a functional chronometer?