TDM 40200: Project 8 — 2023

Motivation: Dashboards are everywhere — many of our corporate partners' projects are to build dashboards (or dashboard variants)! Dashboards are used to interactively visualize some set of data. Dashboards can be used to display, add, remove, filter, or complete some customized operation to data. Ultimately, a dashboard is really a website focused on displaying data. Dashboards are so popular, there are entire frameworks designed around making them with less effort, faster. Two of the more popular examples of such frameworks are shiny (in R) and dash (in Python). While these tools are incredibly useful, it can be very beneficial to take a step back and build a dashboard (or website) from scratch (we are going to utilize many powerfuly packages and tools that make this far from "scratch", but it will still be more from scratch than those dashboard frameworks).

Context: This is the seventh in a series of projects focused around slowly building a dashboard. Students will have the opportunity to: create a backend (API) using fastapi, connect the backend to a database using aiosql, use the jinja2 templating engine to create a frontend, use htmx to add "reactivity" to the frontend, create and use forms to insert data into the database, containerize the application so it can be deployed anywhere, and deploy the application to a cloud provider. Each week the project will build on the previous week, however, each week will be self-contained. This means that you can complete the project in any order, and if you miss a week, you can still complete the following project using the provided starting point.

Scope: Python, dashboards

Learning Objectives
  • Continue to develop skills and techniques using fastapi to build a backend.

  • Learn how to use pydantic for data validation and type hints.

  • Learn how fastapi and pydantic work together to create endpoints that validate data and return typed responses.

  • Create a directory structure to assemble a fastapi backend.

  • Use fastapi and jinja2 to build a frontend.

  • Use fastapi and html to create forms to submit data to the database.

Make sure to read about, and use the template found here, and the important information about projects submissions here.

Dataset(s)

The following questions will use the following dataset(s):

  • /anvil/projects/tdm/data/movies_and_tv/imdb.db

Questions

Interested in being a TA? Please apply: purdue.ca1.qualtrics.com/jfe/form/SV_08IIpwh19umLvbE

Question 1

This project assumes you have a working backend and frontend from the previous project. Need a clean slate? You can copy over a working API starting Saturday, March 4th.

mv $SCRATCH/imdb $SCRATCH/imdb.bak2
mkdir $SCRATCH/imdb
cp -a /anvil/projects/tdm/etc/project07/* $SCRATCH/imdb
cp /anvil/projects/tdm/data/movies_and_tv/imdb.db $SCRATCH/imdb/backend/api/

Then, to run the API, first load up our Python environment.

module use /anvil/projects/tdm/opt/core
module load tdm
module load python/f2022-s2023

Next, find an unused port to run the API on.

find_port # 7777, for example

Then, run the API using the port from the previous step, in our case, 7777.

cd $SCRATCH/imdb
python3 -m uvicorn backend.api.api:app --reload --port 7777

In addition, open another terminal to run the frontend using another port, in our case, 8888.

cd $SCRATCH/imdb
python3 -m uvicorn frontend.endpoints:app --reload --port 8888

You can visit the following links to see the barebones pages.

The goal of this project is to create functioning forms that allow a user to add a new person and title to the database. We will break down the steps for you, as forms can be a bit confusing.

Let’s start by creating templates for our 2 new forms: create_person.html and create_title.html. These are templates that will live in our frontend. Use the following resource to put together the <form> elements for each of these pages.

Pay close attention to the action and method attributes of the <form> element. Since we are uploading new data, the method will be post, and the action will be the URL of the endpoint that will handle the form submission.

You can use this as a starting point for your templates.

<html>
    <head>
        <title>Create thing</title>
    </head>
    <body>

    </body>
</html>

Don’t forget your "submit" button! This will be responsible for making the request to the given endpoint in your action attribute with the http method specified in your method attribute. For example, if you have a form with the action attribute localhost:1234/api/thing and the method attribute put, then when the user clicks the submit button, the browser will make a PUT request to localhost:1234/api/thing, with the content of the form fields.

For this project, our people request will have the following fields: person_id, name, born, and died only. For this project, our titles request will have the following fields: title_id, type, primary_title, original_title, runtime_minutes, premiered, and ended only.

Items to submit
  • Code used to solve this problem.

  • Output from running the code.

Question 2

Next, its time to create endpoints that will show our forms! Since these endpoints will only be responsible for displaying our form, they should be part of our frontend. We will create 2 endpoints:

  • GET /people/create

  • GET /titles/create

These endpoints should simply display the forms we created in the previous step.

For this question, include a screenshot showing each of your forms in the browser.

Items to submit
  • Code used to solve this problem.

  • Output from running the code.

Question 3

At this stage, you should be able to pop open a browser and visit localhost:8888/people/create/ and localhost:8888/titles/create/ and see your forms. However, if you try to submit the form, nothing will happen — after all, we haven’t created the api endpoints that will handle the form submissions yet!

Let’s start that process now.

First, create two new queries in your queries.sql file: create_person and create_title. These queries should insert a new row into the people and titles tables, respectively.

For this question, paste the queries (the complete additions to the queries.sql file) in a jupyter notebook markdown cell.

Items to submit
  • Code used to solve this problem.

  • Output from running the code.

Question 4

Finally, create two new api endpoints (in your backend). These endpoints should be straightforward and do the following.

  1. Establish a connection to the database.

  2. Insert the data.

  3. Return a dict with values as a form of a success message.

This and this will likely be helpful.

If you want a field to be optional, you’ll want to do something like:

from typing import Union
from fastapi import Form

async def some_func(some_field: Union[str, None] = Form(None)):
    pass

These will need to be POST requests, since we are adding new data to the database.

For this question, go ahead and test it out! Please use your new forms to create a new person and new title. Include screenshots of the forms right before clicking "submit". Then, include screenshots of the forms right after clicking "submit".

Items to submit
  • Code used to solve this problem.

  • Output from running the code.

Question 5

Last but certainly not least, lets go ahead and view our new title and person using our frontend. Navigate to the following pages and include screenshots of the pages in your notebook.

Items to submit
  • Code used to solve this problem.

  • Output from running the code.

Please make sure to double check that your submission is complete, and contains all of your code and output before submitting. If you are on a spotty internet connection, it is recommended to download your submission after submitting it to make sure what you think you submitted, was what you actually submitted.

In addition, please review our submission guidelines before submitting your project.