python3 -m pip install google-play-scraper
python3 main.py
Open the output CSV file by dropping it on Google Drive.
function moon_phase(date) { // ported from http://www.voidware.com/moon_phase.htm | |
var year = date.getYear(), | |
month = date.getMonth(), | |
day = date.getDay(); | |
if (month < 3) { | |
year--; | |
month += 12; | |
} |