mitodl / edx2bigquery

Tool to convert & load data from edX platform into BigQuery
GNU General Public License v2.0
29 stars 29 forks source link

Unable to understand the all_harvardx parameter #56

Closed mehulShah19 closed 7 years ago

mehulShah19 commented 7 years ago

I am trying to configure the edx2bigquery_config.py file, whereas there is one field which I am unable to understand courses = { 'year2': course_id_list, 'all_harvardx': [ "HarvardX/AI12.1x/2013_SOND", ], } Can anyone help what the all_harvardx field is

ichuang commented 7 years ago

The keys of the courses dict are names which can be used by the --clist command line option, e.g.:

edx2bigquery --parallel --course-base-dir=SQL_DIRNAME --clist=all_harvardx doall
mehulShah19 commented 7 years ago

Thanks @ichuang for giving this information