https://github.com/syahidfrd/googleplay-review-scrapper
Google Play review scrapper integrated with Qiscus custom channel
https://github.com/syahidfrd/googleplay-review-scrapper
google-play python qiscus scraper
Last synced: 2 months ago
JSON representation
Google Play review scrapper integrated with Qiscus custom channel
- Host: GitHub
- URL: https://github.com/syahidfrd/googleplay-review-scrapper
- Owner: syahidfrd
- Created: 2022-01-31T04:05:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-31T04:07:03.000Z (over 3 years ago)
- Last Synced: 2025-01-20T21:13:28.754Z (9 months ago)
- Topics: google-play, python, qiscus, scraper
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Play review scrapper
Google Play review scrapper integrated with [Qiscus](https://qiscus.com) custom channel### Requirements
- Python3
- PostgreSQL
- Service account file `publisher.json`. (Put it in the root of the project directory)### Setting up Project
Create virtual environment
```bash
python3 -m venv venv
```Activate virtual environment
```bash
source venv/bin/activate
```Install all project dependencies
```bash
pip install -r requirements.txt
```Create environment variables
```bash
cp .env.example .env
```Run server
```bash
# debug mode: off
flask run# debug mode: on
python3 wsgi.py
```