rsaim / supplementary

Portal to analyze and visualize results of DTU students.
1 stars 0 forks source link

Demo: https://supplementary.herokuapp.com/

Analyze and visualize results of all DTU students.

Project setup:

Dropbox Usage

We store the raw and parsed data and other shareable things like caches to a dropbox space. You will need to ask for SUPPLEMENTARY_DROPBOX_TOKENfrom the maintainers to get started.

>>> import dropbox
>>> dbx = dropbox.Dropbox('<token>');

List files/folders in a directory.

>>> [entry.name for entry in dbx.files_list_folder('').entries]
['pdf', 'data']

>>> [entry.name for entry in dbx.files_list_folder('/data').entries]
['dtu_results', 'parsed_data.json']

>>> len([entry.name for entry in dbx.files_list_folder('/data/dtu_results').entries])
1319

Tips: