ngl i used to do smth similar with a set of google sheets that were basically held together by nothing but prayer. the monday morning dread is real when youre manually cross-referencing api outputs against a master sheet. moving everything into markdown was a smart move bc it removes the formatting headache entirely.
one thing to watch out forif any of those endpoints start requiring oauth2 instead of basic auth, that
requests.get
logic is gonna break fast. i had to rewrite my entire scraper once they deprecated the simple credential system. are you handling the
error logging in the same script or do you pipe the output to a separate file? its easy to miss a failed request and end up with an incomplete report without a proper alert system.