From the course: Python for Marketing (2019)

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Importing Google Search Console data

Importing Google Search Console data - Python Tutorial

From the course: Python for Marketing (2019)

Importing Google Search Console data

- [Instructor] In this video, we're going to import Google Search Console CSV's. We've just downloaded these directly from the Google Search Console and as with Google Analytics and any CSV that you'll ever open, you always start with giving it a variable name. So that's somewhere that you will store the data frame. Then calling pandas, then calling read CSV and giving it the path of the file that you want to open. No problems there, no errors. If we get errors, we'll need to investigate. And look at the head of this data. Perfect! Google Search Console data is far more friendly than Google Analytics so we can run through the rest and we should not have any problems at all. Yup, it all works perfectly fine. Okay, so importing Google Search Console data CSV files is pretty easy. We don't need to do anything except from load the CSV.

Contents