Ok so I was trying to make a script that would only activate if it was a week after installing and first running it.
My first thought was to make a new environment variable with the activation time, and making the program check if the current time is larger than that, but I found that using os.environ['activation-Time'] = str(time.time() + 604800)
does not actually add a new environment variable that can be accessed at a later time.
Is it possible to have a variable that gets saved each time you run the code? Or is it possible to create a new environment variable from within a python script?