In this tutorial,
https://docs.valence.desire2learn.com/samples/contentPkg.html,
two items are needed for accessing the course data.
1. course-package: Absolute path location of the course package to import
2. course-offering-id: D2L system identifier for the course offering to receive the import
I found out how to get the course offering ID in D2L, but how can I find the course package for a course?
# handle command line args
parser = argparse.ArgumentParser()
parser.add_argument('--course-package', type=str, required=True,
help='Absolute path location of the course package to import')
parser.add_argument('--course-offering-id', type=str, required=True,
help='D2L system identifier for the course offering to receive the import')
parser.add_argument('--job-token', type=str,
help='Job token if you just want to check on status of a known import job')
args = parser.parse_args()