Importing data from an external JSON file

The Last.fm music website has an API under the http://ws.audioscrobbler.com/ domain that you can use to read the albums, artists, tracks, events, and more. The API allows you to either use the JSON or XML format. In this recipe, we will import the top tracks tagged disco using the JSON format.

Getting ready

Follow these steps in order to import data in the JSON format from Last.fm:

  1. To use Last.fm, you need to register and get an API key. The API key can be created at http://www.last.fm/api/account/create.
  2. The API key has to be set in the settings as LAST_FM_API_KEY.
  3. Also, install the requests library in your virtual environment using the following command:
    (myproject_env)$ pip install requests
    
  4. Let's check

Get Web Development with Django Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.