Converting an Elixir list into a Python dictionary

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?

What do you mean a library? What you’re asking doesn’t make much sense, you’ve already converted it. You mean read Elixir source code and convert it to Python source code?