From 318b0480908d7ef2b55c3439fee214b123db52e8 Mon Sep 17 00:00:00 2001 From: filifa Date: Thu, 8 Aug 2024 00:15:32 -0500 Subject: [PATCH] try to explain mlbgames importance --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9f668f..6f64ed3 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,15 @@ This repo contains some scripts to help automate posting live MLB game updates to Mastodon. ## Structure +* `mlbgames.sh`, `mlbstartpost.sh`, and `mlbfinalpost.sh` are used to make a + post at the start and end of games. `mlbgames.sh` populates the `games` table +of a SQLite database, which the play and highlight scripts read when running, +so you'll need to run `mlbgames.sh` if you want to use the other scripts. * `mlbplaysave.sh` and `mlbplaypost.sh` are used in tandem to post scoring updates. The former saves new plays to a SQLite database, and the latter reads the database and posts any scoring plays that have not been posted yet. * `mlbhighlightsave.sh` and `mlbhighlightpost.sh` work similarly to the previous pair, but post video highlights instead. -* `mlbgames.sh`, `mlbstartpost.sh`, and `mlbfinalpost.sh` are used to make a - post at the start and end of games. * `posthighlights.sql`, `postplays.sql`, `poststart.sql`, and `postfinal.sql` are used by the posting scripts to select unposted data and then mark that data as posted.