commit b7c8d91575adf888c286a03a558106923b5bec4e parent 152195d4da5858622e72fd41738da57a0c89e5f8 Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com> Date: Tue, 21 Jul 2020 09:37:54 -0700 Improve scraper.py. Diffstat:
| M | scraper.py | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/scraper.py b/scraper.py @@ -65,3 +65,9 @@ def correctConjugations(filepath): csvwriter = csv.writer(f) csvwriter.writerow(fields) csvwriter.writerows(rows) + + + +# Correct conjugations in Verbs.csv +if (__name__ == "__main__"): + correctConjugations("Vocab/Verbs.csv")