ROS message definitions python importer
| tests | |
|---|---|
| Python |
import sys
import rosimport
with rosimport.RosImporter():
import my_msgs.msg # directly from a my_msgs/msg directory containing My.msg ros definition
# Or relatively :
from . import msg
# modules are still available, but importer has been deactivated.