UUID stayed the same for different processes on Centos OS, but works fine on Windows OS (UUID per Process flow)
I have two source files that I am running in Python 3.9. (The files are big...) File one (fileOne.py) # ... sessionID = uuid.uuid4().hex # ... File two (fileTwo.py) # ... from fileOne import sessionID # ... File two is…