()
| 43 | |
| 44 | |
| 45 | def load_high_score_so_data() -> None: |
| 46 | parameters = ( |
| 47 | f"?fromdate=1664150400&order=desc&sort=votes&site=stackoverflow&" |
| 48 | "filter=!.DK56VBPooplF.)bWW5iOX32Fh1lcCkw1b_Y6Zkb7YD8.ZMhrR5.FRRsR6Z1uK8*Z5wPaONvyII" |
| 49 | ) |
| 50 | data = requests.get(so_api_base_url + parameters).json() |
| 51 | insert_so_data(data) |
| 52 | |
| 53 | |
| 54 | def insert_so_data(data: dict) -> None: |
no test coverage detected