No commit activity in last 3 years
No release in over 3 years
A small command line utility to show data from our tmc-server.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.6
>= 0

Runtime

 Project Readme

Mooc Data Parser

CodeClimate

Installation

Or install it yourself as:

$ gem install mooc-data-parser

Scripts made to process some data for our Massive Open Online Courses.

Usage

Usage: show-mooc-details [options]
    -f, --force                      Reload data from server
    -u, --user username              Show details for user
    -m, --missing-points             Show missing compulsary points
    -c, --completion-precentige      Show completition percentige
    -e, --email emailaddress         Show details for user
    -t, --tmc-account tmc-account    Show details for user
    -l, --list                       Show the basic list
    -h, --help                       Show this message

Since refreshing data for each search is unnecessary this will cache everything that requires a http request, thus making the functionality much faster.

To get fresh data, use -f command line parameter.

Show basic info for applicants

mooc-data-parser -l

Show basic info for applicants and percents for each week

mooc-data-parser -l -c

Show basic info for applicants and missing points

mooc-data-parser -l -m

Show basic info for applicants and percents for each week and missing points

mooc-data-parser -l -c -m

Find info about a user

  • by email:
mooc-data-parser -e <email>
  • by username:
mooc-data-parser -u <username>

Flags -c and -l can be used with these too.