Plotting Graphs in Python Python offers a wide range of graphs that can be plotted using the library Matplotlib. We can use the function Pyplot of Matplotlib to visualize data in many forms like Line charts, Bar charts, Histograms, Pie charts and many more. Today we will make a program to draw Line Charts for our Stock data in Python. This post is in continuation of our previous post where we explained how to collect and store daily stocks data in your database, which you can go over here: Stock Data Collection in Python . We are going to use the stock data collected from the database we had created there, to get a peek at how a particular stock is performing. Skip to the end if you would like to get the free code! Let's get started! Modules Required As mentioned earlier, we are going to work with matplotlib , specifically with the function matplotlib.pyplot . We will also use mysql.connector to connect Python with MySQL. Last but not the least, mysql.con...