Browse Source

spellings and readme.md

Karl Hudgell 5 months ago
parent
commit
df9b24467d
3 changed files with 8 additions and 2 deletions
  1. 6 0
      README.md
  2. 1 1
      main.py
  3. 1 1
      pyproject.toml

+ 6 - 0
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.

+ 1 - 1
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)

+ 1 - 1
pyproject.toml

@@ -3,7 +3,7 @@ name = "thefafixturecalendar"
 version = "0.1.0"
 description = ""
 authors = ["Karl Hudgell <karl.hudgell@bjss.com>"]
-#readme = "README.md"
+readme = "README.md"
 
 [tool.poetry.dependencies]
 python = "^3.8"