DEV Community

Discussion on: How to Use the TMDB API to Find Films with the Highest Revenue

Collapse
 
jeffpollet profile image
Solidarity&Resist

This is so great, and exactly what I was looking for to start playing with tmdb's api, thank you! I am a newbie, but I think I found one little error. You import pandas as pd, but later do df = pandas.DataFrame(columns=columns), which should be pd.DataFrame(columns=columns).

Thanks again!