File tree Expand file tree Collapse file tree 4 files changed +370127
-0
lines changed Expand file tree Collapse file tree 4 files changed +370127
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Script to solve Wordle automatically
2
+
3
+ ## Setup and activate virtual environment :
4
+ For Unix based systems please execute the following command to create venv and install requirements.
5
+
6
+ ```
7
+ TODO
8
+ ```
9
+
10
+ ## How to use:
11
+ 1 . TODO
12
+
Original file line number Diff line number Diff line change
1
+ python
2
+ selenium
Original file line number Diff line number Diff line change
1
+ # https://github.com/dwyl/english-words for the list of words
2
+
3
+ from selenium import webdriver
4
+ from selenium .webdriver .firefox .service import Service as FirefoxService
5
+ from webdriver_manager .firefox import GeckoDriverManager
6
+
7
+
8
+ def main ():
9
+ start_button = 'esc'
10
+ browser = webdriver .Firefox (service = FirefoxService (GeckoDriverManager ().install ()))
11
+ browser .get ("https://www.nytimes.com/games/wordle/index.html" )
12
+
13
+ if __name__ == "__main__" :
14
+ main ()
You can’t perform that action at this time.
0 commit comments