I have some Linux commands which will generate token. I've automated those commands using OS library form Python on Linux machine. It is working fine.
But, When I try the same code in the windows it is returning nothing.
The following is the code I've tried.
uniqueKey = os.popen('echo -n kittu | base64')
data = uniqueKey.read()
print data
in Linux I got the following output
a210dHU=
in windows it is empty.