From: Nathan TeBlunthuis Date: Sat, 28 Mar 2020 03:27:02 +0000 (-0700) Subject: A few suggestions for the python script: X-Git-Url: https://code.communitydata.science/covid19.git/commitdiff_plain/49c3203d78f07c502c02a6a2ab42551175bb802c?hp=49c3203d78f07c502c02a6a2ab42551175bb802c A few suggestions for the python script: - using format strings (f-strings) is a nice way in python to build strings using variables. - you can read and process a file in one pass if you iterate over the open file itself instead of reading it into a variable and then looping - i had to change your strip code when i stopped using csv reader - my python linter and auto-formater hate non-indendent comments - i added a few lines to print cases where we don't get Ok responses. ---