Working with JSON on COLAB
Get JSON from remote link and load into pandas data frame # load the remote data into a Pandas DataFrame import pandas as pd df = pd.read_json('https://archive.org/download/crowdflower/text_emotion.json', encoding='latin-1') df see colab example Get ...


