Is there a Python library that will take this list from Elixir:
[color: "Red", make: "Mclaren", mileage: 15641.469]
and transform it into a Python map?
{"color": "Red", "make": "Mclaren", "mileage": 15641.469}
If not, what strategy should be used to accomplish this conversion?