I would like to create an enum type at runtime by reading the values in a YAML file. So I have this:
# Fetch the values
v = {'foo':42, 'bar':24}
# Create the enum
e = type('Enum', (), v)
Is there a proper way to do it? I feel calling type is not a very neat solution.
Enumhavinge.fooande.barattributes with such weird values assigned. It's notEnumat all!typedef enum {soda = 3423, flower = 5827, water = 999} articles_t;(this is an example obviously)