Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Let there be light
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboy-bebug committed Jun 17, 2020
0 parents commit ba943eb
Show file tree
Hide file tree
Showing 13 changed files with 472 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build

on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black flake8 pytest
pip install -r requirements.txt
- name: Format with black
run: |
black . --check
- name: Lint with flake8
run: |
flake8 . --ignore=E203 --count --show-source --statistics --max-line-length=90
- name: Test with pytest
run: |
pytest
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Publish

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish 🐍 📦 to PyPi
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
venv
__pycache__
.pytest_cache
*.egg-info
21 changes: 21 additions & 0 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 Eric Lim

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
100 changes: 100 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
![Build](https://github.com/cowboy-bebug/app-store-scraper/workflows/Build/badge.svg)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/cowboy-bebug/app-store-scraper/pulls)
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>

```
___ _____ _ _____
/ _ \ / ___| | / ___|
/ /_\ \_ __ _ __ \ `--.| |_ ___ _ __ ___ \ `--. ___ _ __ __ _ _ __ ___ _ __
| _ | '_ \| '_ \ `--. \ __/ _ \| '__/ _ \ `--. \/ __| '__/ _` | '_ \ / _ \ '__|
| | | | |_) | |_) | /\__/ / || (_) | | | __/ /\__/ / (__| | | (_| | |_) | __/ |
\_| |_/ .__/| .__/ \____/ \__\___/|_| \___| \____/ \___|_| \__,_| .__/ \___|_|
| | | | | |
|_| |_| |_|
```

# Quickstart

```console
pip3 install app-store-scraper
```

```python
from app_store_scraper import AppStore
from pprint import pprint

fortnite = AppStore(country="nz", app_name="fortnite", app_id=1261357853)
fortnite.review(how_many=20)

pprint(fortnite.reviews)
pprint(fortnite.reviews_count)
```

# Extra Details

Let's continue from the code example used in [Quickstart](#quickstart).


## Instantiation

There are three required arguments, `country, app_name, app_id`.

```pycon
>>> fortnite
AppStore(country=nz, app_name=fortnite, app_id=1261357853)
```

These are required to create a URL for the App Store landing page, which can be displayed by the private field, `landing_url` like below:

```pycon
>>> fortnite.landing_url
'https://apps.apple.com/nz/app/fortnite/id1261357853'
```

There are optional arguments used to override log settings:

- `log_format`
- passed directly to `logging.basicConfig(format=log_format)`
- default is `"%(asctime)s [%(levelname)s] %(name)s - %(message)s"`
- `log_level`
- passed directly to `logging.basicConfig(level=log_level)`
- default is `"INFO"`
- `log_interval`
- log is produced every 10 seconds (by default) as a "heartbeat" (useful for a long scraping session)
- default is `10`


## Fetching Review

The maximum number of reviews fetched per request is 20. To minimise the number of calls, the limit of 20 is hardcoded. This means the `review()` method will always grab more than the `how_many` argument supplied with an increment of 20.

```pycon
>>> fortnite.review(how_many=33)
>>> fortnite.reviews_count
40
```

If `how_many` is not provided, `review()` will terminate after *all* reviews are fetched.

**NOTE** the review count seen on the landing page differs from the actual number of reviews fetched. This is simply because only *some* users who rated the app also leave reviews.


## Review Data

The fetched review data are loaded in memory and live inside `reviews` attribute as a list of dict.
```pycon
>>> fortnite.reviews
[{'userName': 'someone', 'rating': 5, 'date': datetime.datetime(...
```

Each review dictionary has the following schema:
```python
{
"date": datetime.datetime,
"isEdited": bool,
"rating": int,
"review": str,
"title": str,
"userName": str
}
```
11 changes: 11 additions & 0 deletions app_store_scraper/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from .app_store import AppStore
from .__version__ import ( # noqa: F401
__title__,
__version__,
__description__,
__author__,
__url__,
__license__,
)

__all__ = ["AppStore"]
7 changes: 7 additions & 0 deletions app_store_scraper/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
__title__ = "app-store-scraper"
__version__ = "0.1.1"
__description__ = "Single API ☝ App Store Review Scraper 🧹"
__author__ = "Eric Lim"
__url__ = "https://github.com/cowboy-bebug/app-store-scraper"
__license__ = "MIT"
__keywords__ = ["app store", "ios", "review", "scraping", "scraper"]
117 changes: 117 additions & 0 deletions app_store_scraper/app_store.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
import logging
import re
import requests
import sys
import time
from datetime import datetime
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.util.retry import Retry
from .base import Base

logger = logging.getLogger("AppStore")


class AppStore(Base):
def __init__(
self,
country,
app_name,
app_id,
log_format="%(asctime)s [%(levelname)s] %(name)s - %(message)s",
log_level="INFO",
log_interval=10,
):
super().__init__(country, app_name, app_id)
self.request_headers.update({"Authorization": self.__token()})

logging.basicConfig(format=log_format, level=log_level.upper())
self.log_interval = log_interval

def __repr__(self):
return "{object}(country={country}, app_name={app_name}, app_id={app_id})".format(
object=self.__class__.__name__,
country=self.country,
app_name=self.app_name,
app_id=self.app_id,
)

def __str__(self):
width = 12
return (
f"{'Country'.rjust(width, ' ')} | {self.country}\n"
f"{'Name'.rjust(width, ' ')} | {self.app_name}\n"
f"{'ID'.rjust(width, ' ')} | {self.app_id}\n"
f"{'URL'.rjust(width, ' ')} | {self.landing_url}\n"
f"{'Review count'.rjust(width, ' ')} | {self.reviews_count}"
)

def __get(
self,
url,
headers=None,
params=None,
total=3,
backoff_factor=3,
status_forcelist=[404],
) -> requests.Response:
retries = Retry(
total=total,
backoff_factor=backoff_factor,
status_forcelist=status_forcelist,
)
with requests.Session() as s:
s.mount(self.base_request_url, HTTPAdapter(max_retries=retries))
logger.debug(f"Making a GET request: {url}")
self.response = s.get(url, headers=headers, params=params)

def __token(self):
self.__get(self.landing_url)
tags = self.response.text.splitlines()
for tag in tags:
if re.match(r"<meta.+web-experience-app/config/environment", tag):
token = re.search(r"token%22%3A%22(.+?)%22", tag).group(1)
return f"bearer {token}"

def __parse_data(self):
response = self.response.json()
for data in response["data"]:
review = data["attributes"]
review["date"] = datetime.strptime(review["date"], "%Y-%m-%dT%H:%M:%SZ")
self.reviews.append(review)
self.reviews_count += 1
self.fetched_count += 1
logger.debug(f"Fetched {self.reviews_count} review(s)")

def __parse_next(self):
response = self.response.json()
next_offset = response.get("next")
if next_offset is None:
self.request_offset = None
else:
offset = re.search("^.+offset=([0-9]+).*$", next_offset).group(1)
self.request_offset = int(offset)
self.request_params.update({"offset": self.request_offset})

def __heartbeat(self):
interval = self.log_interval
if self.log_timer == 0:
self.log_timer = time.time()
if time.time() - self.log_timer > interval:
logger.info(f"[{interval}s HEARTBEAT] Fetched {self.reviews_count} reviews")
self.log_timer = 0

def review(self, how_many=sys.maxsize):
logger.info(f"Fetching reviews for {self.landing_url}")
while True:
self.__heartbeat()
self.__get(
self.request_url,
headers=self.request_headers,
params=self.request_params,
)
self.__parse_data()
self.__parse_next()
if self.request_offset is None or self.fetched_count >= how_many:
logger.info(f"Fetched {self.fetched_count} reviews")
self.fetched_count = 0
break
64 changes: 64 additions & 0 deletions app_store_scraper/base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
import random
import re


class Base:
__scheme = "https"

__landing_host = "apps.apple.com"
__request_host = "amp-api.apps.apple.com"

__landing_path = "{country}/app/{app_name}/id{app_id}"
__request_path = "v1/catalog/{country}/apps/{app_id}/reviews"

def __init__(self, country, app_name, app_id):
self.country = str(country).lower()
self.app_name = re.sub(r"[\W_]+", "-", str(app_name).lower())
self.app_id = str(app_id)

self.base_landing_url = f"{self.__scheme}://{self.__landing_host}"
self.base_request_url = f"{self.__scheme}://{self.__request_host}"

self.landing_url = self.__landing_url()
self.request_url = self.__request_url()

self.user_agents = [
# NOTE: grab from https://bit.ly/2zu0cmU
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
]

self.request_offset = 0
self.request_headers = {
"Accept": "application/json",
"Connection": "keep-alive",
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": self.base_landing_url,
"Referer": self.landing_url,
"User-Agent": random.choice(self.user_agents),
}
self.request_params = {
"l": "en-GB",
"offset": self.request_offset,
"limit": 20,
"platform": "web",
"additionalPlatforms": "appletv,ipad,iphone,mac",
}

self.reviews = list()
self.reviews_count = int()

self.fetched_count = int()

self.log_timer = float()

def __landing_url(self):
landing_url = f"{self.__scheme}://{self.__landing_host}/{self.__landing_path}"
return landing_url.format(
country=self.country, app_name=self.app_name, app_id=self.app_id
)

def __request_url(self):
request_url = f"{self.__scheme}://{self.__request_host}/{self.__request_path}"
return request_url.format(country=self.country, app_id=self.app_id)
Empty file.
Loading

0 comments on commit ba943eb

Please sign in to comment.