A simple command language inspired from python functions.
import dew
result = dew.parse('add rgb color name="my color" r=100 g=150 b=200')
print(result)
# {
# "args": [
# "add",
# "rgb",
# "color"
# ],
# "kwargs": [
# ("name", "my color"),
# ("r", "100"),
# ("g", "150"),
# ("b", "200")
# ],
# }pip install git+https://github.com/jmmaa/dew.git