spellings and readme.md

This commit is contained in:
Karl Hudgell 2023-11-28 11:47:36 +00:00
parent 24d7de4856
commit df9b24467d
3 changed files with 8 additions and 2 deletions

6
README.md Normal file
View File

@ -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.

View File

@ -82,7 +82,7 @@ if exists:
store_df_as_csv(df) store_df_as_csv(df)
create_ical_file(df, cal) create_ical_file(df, cal)
else: else:
print("Fixtured not updated, no update to ical") print("Fixtures not updated, no update to ical")
else: else:
store_df_as_csv(df) store_df_as_csv(df)
create_ical_file(df, cal) create_ical_file(df, cal)

View File

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