I am running a bash script (test.sh) and it loads in environment variables (from env.sh). That works fine, but I am trying to see python can just load in the variables already i
You need to export the variables in bash, or they will be local to bash:
export test1
Then, in python
import os print os.environ["test1"]