I created the following example to understand the instances in python
import time; class test: mytime = time.time(); def __init__(self): #self
The reason the value never changes is because it is a class variable meaning when the class is defined and evaluated but not when instances are made then the value is set.
If you want the value to change make it set inside the initialiser