我想从谷歌播放下载很多apks到PC并在手机上安装apk进行测试.
我已经看到http://apk-dl.com/可以下载一个apk到PC,所以有可能通过使用java或python做一些相同的事情或有一些代码示例?
使用Google Play非官方Python API (github)
使用此API,您可以使用其包名称下载APK:
python download.py com.google.android.gm
要查找相关的APK,您可以使用搜索甚至解析子类别
python search.py earth python list.py WEATHER apps_topselling_free
您也可以取消http://apk-dl.com以获得apk下载链接,这些步骤包括首先进入http://apk-dl.com/{packageName}
并提取连续2页中的链接值。
一个使用curl下载和pup解析HTML的bash示例将是:
#!/bin/bash
package=com.facebook.katana
# Download APK
temp_link=$(curl -s "http://apk-dl.com/$package" | pup ".download-btn .mdl-button attr{href}")
temp2_link=$(curl -s "http://apk-dl.com/$temp_link" | pup ".detail a attr{href}")
dl_link=$(curl -s "$temp2_link" | pup ".contents a attr{href}")
rm -f app.apk
curl -s -o app.apk "http:$dl_link"
在Java中,以下方法返回apk下载网址:
public static String getApkDownloadUrl(final String packageName) throws IOException {
Elements data = Jsoup.connect("http://apk-dl.com/" + packageName).get().select(".download-btn .mdl-button");
if (data.size() > 0) {
Elements data2 = Jsoup.connect("http://apk-dl.com" + data.attr("href")).get()
.select(".detail a");
if (data2.size() > 0) {
Elements data3 = Jsoup.connect(data2.attr("href")).get()
.select(".contents a");
return (data3.size() > 0) ? "http:" + data3.attr("href") : "";
}
}
return "";
}
在Python中:
import urllib2
from bs4 import BeautifulSoup
import re
def get_apk_url(package_name):
opener = urllib2.build_opener()
response = opener.open('http://apk-dl.com/' + package_name)
soup = BeautifulSoup(response.read(), 'html.parser')
temp_link = soup.find("div",{'class': 'download-btn'}).find("a")["href"]
response = opener.open('http://apk-dl.com/' + temp_link)
soup = BeautifulSoup(response.read(), 'html.parser')
temp_link2 = soup.find("section",{'class': 'detail'}).find("a")["href"]
response = opener.open(temp_link2)
soup = BeautifulSoup(response.read(), 'html.parser')
temp_link3 = soup.find("div",{'class': 'contents'}).find("a")["href"]
return "http:" + temp_link3
print(get_apk_url('com.facebook.katana'))