PyAr / PyZombis

Programación Python para Zombis MOOC (código y materiales del curso abierto y masivo en linea)
GNU Affero General Public License v3.0
21 stars 47 forks source link

Fake REST API for testing / support #250

Open reingart opened 1 year ago

reingart commented 1 year ago

We would need a simple webserver to test, get some statistics to improve the course and allow students to save data / get progress until we have a full runestone backend #6.

The static web pages often do requests to save the code, get history or set time zone:

Open the inspector to see the network traffic, for example: image for first exercise of page https://pyar.github.io/PyZombis/main/lectures/TWP15/TWP15_3.html

This webserver could be done in FastAPI or Flask (REST API). No authentication is mandatory, anonymous is ok.

AbhinandanSingla commented 1 year ago

Dear Mentor, I Would like to make this web server. Can you please guide what exactly I have to do?