Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.21 KB

File metadata and controls

39 lines (28 loc) · 1.21 KB

First-Web-App

Code for my first web project, for the UNSW course TELE3118, Term 3, 2020.

Part 1 [5 points]

Populating database: In this part we write a UDP client program that sends a message to a UDP server requesting the list of students and their marks. We store this information in a JSON file.

To run:

  • Download the directory part1
  • Enter the following into your terminal: python udp_client.py
  • Observe this returns the list of student marks in the form of a JSON file

Part 2 [5 points]

A webserver that queries the database, possible with any web browser.

To run:

  • Download the directory part 2
  • Install flask using pip
  • Enter the following into your terminal python app.py
  • Open the local host on the web browser
  • Interact with the website

Part 3 [3 points]

A pretty front-end.

To run:

  • Download the directory part 3
  • Install flask using pip
  • Enter the following into your terminal python app.py
  • Open the local host on the web browser
  • Interact with the website

Part 3 - Baby

A version of part 3 that is coded by Renee's little brother.

Tutorial

Contains sample code and notes from the course tutorial video.