This assignment is a list of exercises for practicing Flask. You can find multiple features which you can use separately after the Preparation part. Do not forget to commit after you completed a part.
from bs4 import BeautifulSoup with open('home.html', 'r') as html_file: content = html_file.read() # print(content) soup = BeautifulSoup(content, 'lxml') # courses ...