Skip to content
Advertisement

Python pandas extract data from nested list

For a personal project, I’m calling data from the Google Books API and uploading the fields I want to mySQL.

I’ve successfully made the API request and received data. The data received is nested and i want to place this in a dataframe. Now my code works with the “first” column (no indent). All data after, I cannot enter this in a dataframe.

A small part of the API output:

JavaScript

Bellow is my python code:

JavaScript

When using columns=['totalItems'] the value 1 is in the Dataframe, but when using columns=['title'] it says NaN. The same goes for id for example.

Am i missing something simple? Or is my aproach wrong?

The goal is to eventually enter the data in a mySQL DB, to catalogue all the books I have. Any advice on future steps is appreciated!

Advertisement

Answer

This is working for me.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement