I am building a website (HTML and CSS) to display and sell my art. At the bottom layer there will be multiple grandchildren, each page dedicated to a single work of art containing the item name, medium, description etc. I have written all the specific content I need for each grandchild in csv, see example below.
Rather than manually type out each html page for each artwork separately. I was wondering if there exist a method to automate this task (preferably using python)? I.e. wrapping specific tags around the content elements in the csv file. Essentially reverse engineering BeautifulSoup4 which converts HTML to csv.
thanks in advance...