Question: Write a python script to parse the JSON data from URL, which contains a listing of all the machines and services registered with Cooperative Computing
Write a python script to parse the JSON data from URL, which contains a listing of all the machines and services registered with Cooperative Computing Lab, and display the name of the machines with the type wq_factory.
It should basically be the Python equivalent of the following pipeline:
$ curl -sL URL | sed -En 's/\{"name":"([^"]+)".*"type":"wq_factory".*/\1/p' import requests # Constants URL = '' # TODO: Make a HTTP request to URL response = None # TODO: Access json representation from response object data = None # TODO: Display all machine names with type "wq_factory" for machine in data: pass
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
