Kedro related. Kedro itself will resolve parameter relative paths such as 'data/01_raw...." when working with the DataCatalog, but I need to resolve that path, relative to the kedro project (which might be moved around different machines and locations) to pass to an external tool.
The find_kedro_project() might be what I'm after? Do you know where the documentation and examples for using can be found?
As another example, this doc page:
https://docs.kedro.org/en/1.0.0/configure/parameters/#how-to-load-parameters-in-code
shows an example of getting the conf path - the example starts with a project_path variable but doesn't show how to obtain that project_path in the first place.
conf_path = str(project_path / settings.CONF_SOURCE)