diff options
author | Dmitrii Morozov <dmitrii.morozov@sbb.ch> | 2025-06-02 10:02:47 +0200 |
---|---|---|
committer | Dmitrii Morozov <dmitrii.morozov@sbb.ch> | 2025-06-02 10:02:47 +0200 |
commit | 6c9134af5977cc475cf75af0eb36b6d378012819 (patch) | |
tree | 5c3d097fc7eb1e9a9c40e3d3bac88c673b87df50 | |
parent | 0166908dc18c68cbd5ac39df4448e286c0c7f511 (diff) |
-rw-r--r-- | .gitignore | 3 | ||||
-rwxr-xr-x | crop-finder.py | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1,2 +1,3 @@ .env -chrome-*
\ No newline at end of file +chrome-* +venv
\ No newline at end of file diff --git a/crop-finder.py b/crop-finder.py index eae5f92..ac1805b 100755 --- a/crop-finder.py +++ b/crop-finder.py @@ -1,6 +1,7 @@ import csv import time import os +import sys from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys |