How to set launch file arguments using roslaunch Python API
I am using the roslaunch Python API to run some launch files. Some of these launch files have some arguments (specified with the arg
tag). On the terminal, I would set these arguments like this:
roslaunch mypkg foobar.launch bla:=42
Unfortunately I am not able to figure out how to set the argument (bla:=42
) when running the same launch file with the Python API.