Reading and writing environment variables in Python? [duplicate] Reading and writing environment variables in Python? [duplicate] python python

Reading and writing environment variables in Python? [duplicate]


Try using the os module.

import osos.environ['DEBUSSY'] = '1'os.environ['FSDB'] = '1'# Open child processes via os.system(), popen() or fork() and execv()someVariable = int(os.environ['DEBUSSY'])

See the Python docs on os.environ. Also, for spawning child processes, see Python's subprocess docs.


First things first :) reading books is an excellent approach to problem solving; it's the difference between band-aid fixes and long-term investments in solving problems. Never miss an opportunity to learn. :D

You might choose to interpret the 1 as a number, but environment variables don't care. They just pass around strings:

   The argument envp is an array of character pointers to null-   terminated strings. These strings shall constitute the   environment for the new process image. The envp array is   terminated by a null pointer.

(From environ(3posix).)

You access environment variables in python using the os.environ dictionary-like object:

>>> import os>>> os.environ["HOME"]'/home/sarnold'>>> os.environ["PATH"]'/home/sarnold/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games'>>> os.environ["PATH"] = os.environ["PATH"] + ":/silly/">>> os.environ["PATH"]'/home/sarnold/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/silly/'


If you want to pass global variables into new scripts, you can create a python file that is only meant for holding global variables (e.g. globals.py). When you import this file at the top of the child script, it should have access to all of those variables.

If you are writing to these variables, then that is a different story. That involves concurrency and locking the variables, which I'm not going to get into unless you want.