Networking application with Python : querying the database (data provided below) using a web-browser: develop a web-server that allows the database to be queried using any web-browser.
Your web-server will support the following HTTP GET operations:
"ip address:portnumber/api/studentlist" should return the list of students as an array, encoded in JSON.
"ip address:portnumber/api/studentmark/[student-name]" should return the mark for the student whose name is specified as part of the URL string.
The outputs of the queries above should be viewable using any browser. it is recommended that you use the Python Flask framework for developing your web-server, and Python's JSON encoder library for sending JSON formatted strings.