4yn / hnr22

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pynoculars

banner

Submitted to Hack & Roll 2022 by team Flexbox (Lim Li, Likai, Jia Cheng and Si Yuan).

Devpost

Inspiration

Teaching remote programming classes using Jupyter notebook worksheets is awesome. However, managing them can be a pain. It is almost impossible to know the exact progress of students, and communication (e.g. when debugging) is slow and imprecise.

What it does

Look over people's shoulder and into their code, but online!

AKA requestbin/webhook.site for ipython

Taking a Jupyter notebook file, our extension allows an instructor to view the progress of a group of students (live!) as they work. When a student runs a cell, the instructor can see:

  • Raw output
  • Code in the cell
  • Stacktrace of any errors that occured

Try it out by first loading a IPython notebook over Kaggle, Colab or even your local jupyterlab installation and install the pynoculars.py script. Run some code as if you were a student in a classroom, then take a look at the facilitator dashboard (now offline) and see if your "teacher" found out what you wrote!

How we built it

We built the following components:

  • An extension to IPython, hooking into its cell evaluation cycle.
  • A server that receives student’s cell entry data from the IPython extension
  • A React frontend that displays the info collected by the server

The extension involves significant monkeypatching and context management of IPython features. Much of it was created with reference to the IPython capture magic and the Jupyter matplotlib inline backend.

overview

Clip art from irasutoya

Challenges we ran into

  • The ipynb format (<4.5) does not support unique cell IDs, at least such ID info is not readily available to extensions, even with lifecycle hooks. In fact the lifecycle hooks give very restrictive metadata like the last evaluation result, whereas we actually wanted all the output/evaluation results in a cell.
  • IPython and Jupyter hook into many parts of the evaluation of a Python program, and make it difficult to obtain raw error stacktraces and outputs.

Accomplishments that we're proud of

  • Managed to “hack” IPython to allow us to capture the entire output and error stacktrace
  • Implemented 3 distinct components to our tech stack in a short period of time

What we learned

  • IPython extensions and their many caveats
  • Various tricks in Jupyter Notebook (e.g. locking cells)
  • And a bit of React / Material UI

What's next for Pynoculars

  • Databases for persistent storage of data collected from the IPython extension, currently it is only stored in memory on the server.
  • Making records downloadable on the frontend, conversion to csv format etc.
  • A more organized display to show student activity
  • An interface to generate and deploy worksheets and check answers

About

License:MIT License


Languages

Language:Jupyter Notebook 63.0%Language:TypeScript 27.4%Language:Python 8.7%Language:HTML 0.7%Language:CSS 0.2%Language:JavaScript 0.1%Language:Shell 0.0%