微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android – 使用python获取Google Playstore应用下载链接

我想获得特定类别的每个应用程序的Playstore链接.

这是我尝试过的:

r = br.open("https://play.google.com/store/apps/category/ART_AND_DESIGN/collection/topselling_free")
html = r.read()
soup = bsoup(html)

urlslist = soup.findAll("a", { "class" : "card-click-target" })

fo = open('url.txt', 'w')

for url in urlslist:
        print "".join(["https://play.google.com",url])
        fo.write("".join(["https://play.google.com",url])+"\n")

fo.close()

但它不会返回任何东西. urlslist也没有填充.我试过不同的标签和类,例如. soup.findAll(“div”,{“class”:“title”}),但这也返回一个空白数组.

请指教.先感谢您.

解决方法:

你必须迭代:

soup.findAll(“a”, { “class” : “card-click-target” })

然后提取每个标签的href属性,

因此,请更改以下代码

for url in urlslist:
    print "".join(["https://play.google.com",url])
    fo.write("".join(["https://play.google.com",url])+"\n")

至:

for a in urlslist:
    link = "https://play.google.com" + a['href']
    print(link)
    fo.write(link + "\n")

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐