pip3 install pyqt5 # propably already installed
sudo apt-get install python3-pyqt5 # probably already installed aswell
sudo apt-get install pyqt5-dev-tools # code generator, ...
sudo apt-get install qttools5-dev-tools # qt development tools (assistant, designer, linguist)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Calculate the total number of downloads for a flathub app. | |
""" | |
import json | |
import logging | |
import sys | |
from datetime import date, timedelta | |
from typing import Generator, Tuple | |
import requests |