python3 -m pip install google-play-scraperpython3 main.pyOpen 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; | |
| } |