pandas.DataFrame.drop_duplicates(inplace=True) Throws 'TypeError: unhashable type: 'dict''
Here is my code: BLOCK 1 import requests import pandas as pd url = ('http://www.omdbapi.com/' '?apikey=ff21610b&t=social+network') r = requests.get(url) json_data = r.json() # from app print(json_data['Awards']) json_dict = dict(json_data) tab="" # printing all data as Dictionary print("JSON as Dictionary (all):n")…