ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
In order to complement @alee answer, the best practice (up to my knowledge) is:
scripts
folder.src/<pkg_name>/
. Then, in your scripts (or python code) which are not necessarily in the same package, you can import using from <pkg_name> import foo
.