【头歌】JSON数据解析

第1关:JSON解析

import urllib.request
from lxml import etree
import http.cookiejar
import json

def request_sess(url,headers):
    cj=http.cookiejar.CookieJar()
    opener=urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
    request = urllib.request.Request(url=url, headers=headers)
    r=opener.open(fullurl=request)
    html = r.read().decode('utf-8')
    return html
   
def save_data(path):
    '''
    :param path: 文件保存路径
    :return: 无
    '''
    url='http://127.0.0.1:8080/index'
    headers={
        'User-Agent':'Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Mobile Safari/537.36'
    }
    # ********** Begin ************** #
    json_str = request_sess(url,headers)
    # 输出 JSON 数据中的 key 值为 code 对应的数据
    b=json. loads(json_str)
    print(b['code'])
 
    
    # 将爬取下来的 JSON 数据保存到本地
    with open(path,'w') as f:
        json.dump(b,f)
    # 输出 JSON 数据中的 key 值为 code 对应的数据
    
    
    # 将爬取下来的 JSON 数据保存到本地

    # ********** End ************** #

你可能感兴趣的:(头歌,json)