我从 Python 和 Beautiful Soup 开始,我正在 JSON 文件中抓取 Google PlayStore 和应用程序元数据。这是我的代码:
def createjson(app_link):
url = 'https://play.google.com/store/apps/details?id=' + app_link
response = get(url)
html_soup = BeautifulSoup(response.text, 'html.parser')
bs = BeautifulSoup(response.text,"lxml")
result = [e.text for e in bs.find_all("div",{"class":"hAyfc"})]
apptype = [e.text for e in bs.find_all("div",{"class":"hrTbp R8zArc"})]
data = {}
data['appdata'] = []
data['appdata'].append({
'name': html_soup.find(class_="AHFaub").text,
'updated': result[1][7:],
'apkSize': result[2][4:],
'offeredBy': result[9][10:],
'currentVersion': result[4][15:]
})
jsonfile = "allappsdata.json" #Get all the appS infos in one JSON
with open(jsonfile, 'a+') as outfile:
json.dump(data, outfile)
我的“结果”变量在特定应用程序页面中查找字符串,问题在于 Google 正在更改两个不同页面之间的顺序。有时 result[1] 是应用程序名称,有时它是 result[2];我需要的其他元数据也有同样的问题(“更新”、“apkSize”等...)我该如何处理这些变化。是否有可能以不同的方式刮擦?谢谢
紫衣仙女
相关分类