get_pkg_data_path#
- astropy.utils.data.get_pkg_data_path(*path, package=None)[source]#
Get path from source-included data directories.
- Parameters:
- *path
python:str Name/location of the desired data file/directory. May be a tuple of strings for
os.pathjoining.- package
python:strorpython:None, optional, keyword-only If specified, look for a file relative to the given package, rather than the calling module’s package.
- *path
- Returns:
- path
python:str Name/location of the desired data file/directory.
- path
- Raises:
ImportErrorGiven package or module is not importable.
RuntimeErrorIf the local data file is outside of the package’s tree.