Skip to content

Commit

Permalink
feat: Update summary of options display
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobello committed Sep 7, 2024
1 parent 296cef3 commit cbe28a6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/par_scrape/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,21 @@ async def _main(): # pylint: disable=too-many-locals, too-many-branches, too-ma
("Model: ", "cyan"),
(f"{model}", "green"),
"\n",
("AI Provider: ", "cyan"),
(f"{ai_provider.value}", "green"),
"\n",
("Scraper: ", "cyan"),
(f"{scraper}", "green"),
"\n",
("Headless: ", "cyan"),
(f"{headless}", "green"),
"\n",
("Sleep Time: ", "cyan"),
(f"{sleep_time} seconds", "green"),
"\n",
("Pause: ", "cyan"),
(f"{pause}", "green"),
"\n",
("Fields to extract: ", "cyan"),
(", ".join(fields), "green"),
"\n",
Expand Down

0 comments on commit cbe28a6

Please sign in to comment.