I inserted in my GUI python code the following lines
if time.time() > 1408492800: # 20-Aug-2014 at midnight
disp("licence expired!")
else:
root = Tk()
app = App(root)
root.mainloop()
Is that secure? Is there any other way to prevent people using the code after the 20th of august? Is any other way people could find a workaround on that?
I forgot to say that I'm going to compile than under Windows.