From df9b24467d14c44f803daefe2c7e0c8d0378cee2 Mon Sep 17 00:00:00 2001 From: Karl Hudgell Date: Tue, 28 Nov 2023 11:47:36 +0000 Subject: [PATCH] spellings and readme.md --- README.md | 6 ++++++ main.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ba5e2ad --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +## Down Grange Pumas Fixtures > ical +This project will parse the fulltime.thefa.com webpage for fixtures for a specifc team. +It will then parse the information into a ical file +ical can then be subscribed to via Calendars + +Using Git Actions to update the fixtures on a schedule and recommit the update to the repo. \ No newline at end of file diff --git a/main.py b/main.py index 96fbb7f..c905d48 100644 --- a/main.py +++ b/main.py @@ -82,7 +82,7 @@ if exists: store_df_as_csv(df) create_ical_file(df, cal) else: - print("Fixtured not updated, no update to ical") + print("Fixtures not updated, no update to ical") else: store_df_as_csv(df) create_ical_file(df, cal) diff --git a/pyproject.toml b/pyproject.toml index 58516ae..69b9b2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "thefafixturecalendar" version = "0.1.0" description = "" authors = ["Karl Hudgell "] -#readme = "README.md" +readme = "README.md" [tool.poetry.dependencies] python = "^3.8"