Make a ROS2 program communicate with a Python program
Hi,
We have Python program that has been developed by a team and is the core program.
This Python program calls a simulation made with ROS2, as a service, for some of the robot's moves.
We could put the Python program in a ROS2 node but this will make everything more complicated for the Python team. Including debugging.
We currently plan to have a web server to handle the communication between the two. One of the ROS2 nodes would be listening for requests from the Python program.
Or is there some "common way" to do that more efficiently?
Thanks