I am using different libraries like pandas and numpy for generating a dataframe, which eventually generate a graph.
Now, I need to show this graph into a simple webpage which is in HTML.
Note: I am also willing to take 2-3 input from user in HTML page then pass that data to my python file. Afterwards, python file generates a graph based on given data(from HTML page) and I need to pass this graph to an HTML page.
df[[main_data]].plot()
Here, main_data is variable whose value is coming from HTML page. And I am doing python code in SPYDER. And I am not using any Framework.