This is for the following use case: parsing an environment variable into a dictionary, a list, or a set.
Suppose one had the following environment variables:
DICT_VAR=hello:1,world:2
SET_VAR=1,1,1,2,3,4
LIST_VAR=1,2,3,4,5,5,5
The user would then want these parsed as dictionaries, sets, or lists, respectively.
This is for the following use case: parsing an environment variable into a dictionary, a list, or a set.
Suppose one had the following environment variables:
The user would then want these parsed as dictionaries, sets, or lists, respectively.