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
Assuming the environment variables that get set are permanent, which I think they are not. You can use os.environ.
os.environ
os.environ["something"]