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
Script that exports data to xlsx or to a Google Sheet.
"""
import argparse
import configparser
from nau import Reports
if __name__ == "__main__":
parser = argparse.ArgumentParser(
prog='NAU Open edX Database exporter',
description='Exports to xlsx or to Google Sheet with Open edX DB',
epilog='This program exports to a xlsx file or directly to a Google Sheet information from the Open edX database, so it can be analyze or integrated with dashboard application.',
)
parser.add_argument('--config', type=argparse.FileType('r'), required=True, help='The path to a config.ini with the required configurations.')