Quotes help make search much faster. Example: "Practice Makes Perfect"

Saturday, January 26, 2013

Make Your First JSON Request



# Codecademy Sample Solution

import requests
import pprint

query_params = { 'apikey': '24115b5bd3d34ed28fc03a8c53eed18c',
        'phrase': 'tax cuts'
      }

endpoint = 'http://capitolwords.org/api/text.json'

response = requests.get( endpoint, params=query_params)
data = response.json

pprint.pprint(data)

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts