Google Play 应用信息获取 google-play-scraper
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/facundoolano/google-play-scraper
软件介绍
google-play-scraper 是 Node.js scraper,从 Google Play 获取基本应用数据。
安装:
npm install google-play-scraper
获取 app(appid,lang)的示例:
var gplay = require('google-play-scrapper');
gplay.app('com.dxco.pandavszombies')
.then(function(app){ console.log('Retrieved application: ' + app.title);
})
.catch(function(e){ console.log('There was an error fetching the application!');
});结果:
{
appId: 'com.dxco.pandavszombies',
title: 'Panda vs Zombie: Elvis rage',
url: 'https://play.google.com/store/apps/details?id=com.dxco.pandavszombies&hl=en',
icon: 'https://lh6.ggpht.com/5mI27oolnooL__S3ns9qAf_6TsFNExMtUAwTKz6prWCxEmVkmZZZwe3lI-ZLbMawEJh3=w300',
minInstalls: 10000,
maxInstalls: 50000,
score: 4.9,
reviews: 2312,
description: 'Everyone in town has gone zombie.',
descriptionHTML: 'Everyone in town has gone <b>zombie</b>.',
developer: 'DxCo Games',
genre: 'Action',
price: '0',
free: true,
video: 'https://www.youtube.com/embed/PFGj-W8Pe5s'}
《数据结构》算法实现及解析
高一凡 / 西安电子科技大学出版社 / 2002-10-1 / 35.0
《数据结构算法实现及解析》配有光盘,光盘中包括书中所有程序及用标准C语言改写的程序。所有程序均在计算机上运行通过。《数据结构算法实现及解析》适用于使用教科书的大中专学生和自学者。书中的基本操作函数也可供从事计算机工程与应用工作的科技人员参考和采用。一起来看看 《《数据结构》算法实现及解析》 这本书的介绍吧!
