Files
fdroidclient/tools/update-most-downloaded-apps.py
2026-02-25 16:17:22 -03:00

14 lines
365 B
Python
Executable File

#!/usr/bin/env python3
#
# Fetch the list of most downloaded apps
import os
import requests
import json
os.chdir(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
r = requests.get('https://grote.gitlab.io/fdroid-metrics-distilled/top/50.json')
with open('app/src/main/assets/most_downloaded_apps.json', "w") as f:
json.dump(r.json(), f, indent=2)