mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 16:41:21 +00:00
9 lines
300 B
Python
9 lines
300 B
Python
from os import environ
|
|
from collections import namedtuple
|
|
|
|
TFW_PREFIX = 'TFW_'
|
|
tfwenvvars = {envvar.replace(TFW_PREFIX, '', 1): environ.get(envvar)
|
|
for envvar in environ.keys()
|
|
if envvar.startswith(TFW_PREFIX)}
|
|
tfwenv = namedtuple('tfwenvtuple', tfwenvvars)(**tfwenvvars)
|