Just for Kicks coding lab implementing graph datastructures and Breadth first search.
https://en.wikipedia.org/wiki/Breadth-first_search
With a larger dataset, this could be used to determine "6 Degrees of Separation" or determining who is the center of hollywood.
A small truncated and cleanedup dataset from "oracleofBacon" site https://oracleofbacon.org/data.txt.bz2
Clone the repo
Open Terminal and CD to repo folder
Run the following command
FLASK_APP=app.py FLASK_ENV=developement flask run
Go to http://localhost:5000/
in the browser
Key in any 2 actor to see how they are connected.
Python Flask, HTML and Jinja.
The Coding Train and Daniel Shiffman