You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add sheet to yadisk table adding logic
* integrate yadisk logic to moodle export
* dont push to google if no table/sheet id
* dont push to google if no google_token in args
* if cls.args specified write data to sheets document
* move utils from scripts to moodle_export
* add openpyxl to moodle_export requirements
* cp yadisk_manager.py to moodle_export
* update yadisk version
* yatoken as args to write_sheet_to_file
* yatoken as args to DiskManager
* update default CSV_DELIMITER in moodle_export
* change write mode for logfile
* container stdout to file (error to console)
* fix indent for google sheet export
* update check_export yo yadisk
* update required args for checker_export
* add openpyxl to requirements (checker_export)
* update yadisk version (checker_export requirements)
* update load_data_from_dis
* update add_csv_to_table logic
* update add_csv_to_table (split rows)
* DIS export to csv file
* Update moodle_export.utils.py (clear sheet instead remove)
* Update checker_export.utils.py (clear sheet instead remove)
* clear sheet (insert_rows with 0)
* download_sheet_to_pdf -> download_sheet (file extension as arg)
* update download_sheet args
* update duplicateSheetsToYadisk logs
* update wget for download_sheet
* update abs_disk_path in upload_file_to_disk
* update duplicateSheetsToYadisk
* update duplicateSheetsToYadisk
* fix duplicateSheetsToYadisk
* rm debug logs
* add error handling in export_courses.sh
* if to case (export_courses.sh)
* checker_export: sheet_id to sheet_name
* improve export_courses.sh (implement checker export and rename env var)
* add workflows
* rm comment in Dockerfile (stepik_export)
* rename sheet_id to sheet_name
Copy file name to clipboardExpand all lines: moodle_export/args_parser.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ def arg_parser():
9
9
parser.add_argument('--csv_path', type=str, required=True, help='Specify path to output csv file')
10
10
parser.add_argument('--google_token', type=str, required=False, help='Specify path to google token file')
11
11
parser.add_argument('--table_id', type=lambdas: [iforiins.split(',')], required=False, help='Specify Google sheet document id (can find in url)')
12
-
parser.add_argument('--sheet_id', type=lambdas: [iforiins.split(',')], required=False, help='Specify title for a sheet in a document in which data will be printed')
12
+
parser.add_argument('--sheet_name', type=lambdas: [iforiins.split(',')], required=False, help='Specify title for a sheet in a document in which data will be printed')
13
13
parser.add_argument('--yandex_token', type=str, required=False, help='Specify Yandex token from https://oauth.yandex.ru/client/new application')
14
14
parser.add_argument('--yandex_path', type=str, required=False, help='Specify output filename on Yandex Disk')
15
15
parser.add_argument('--percentages', required=False, action='store_true', help='If set then grades will be printed as percentages')
0 commit comments