https://github.com/cr2007/wordle-solutions-bot
Python Bot for getting the Wordle solutions via the Wordle API
https://github.com/cr2007/wordle-solutions-bot
ntfy-sh python wordle wordle-solution
Last synced: over 1 year ago
JSON representation
Python Bot for getting the Wordle solutions via the Wordle API
- Host: GitHub
- URL: https://github.com/cr2007/wordle-solutions-bot
- Owner: cr2007
- Created: 2024-06-24T17:10:38.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-30T04:40:11.000Z (over 1 year ago)
- Last Synced: 2024-10-30T07:24:21.055Z (over 1 year ago)
- Topics: ntfy-sh, python, wordle, wordle-solution
- Language: Python
- Homepage:
- Size: 168 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wordle Solutions Bot
A simple Python program that gets the Wordle solutions from the Wordle API.
# Requirements
To run this program, make sure to have Python 3 installed on your machine.
You can install the required packages by running:
```
pip install -r requirements.txt
```
# Usage
```bash
python main.py # Gets today's Wordle solution
```
If you want to get a solution from a particular date, you can pass the date as an argument:
```bash
python main.py 01-01-2022 # Gets the solution for January 1st, 2022
python main.py 2022-03-01 # Gets the solution for March 1st, 2022
```
If you want to write the solution to a file, you can pass the `-w` argument to save the solutions:
```bash
python main.py -w # Saves today's solution to a file
python main.py 01-01-2022 -w # Saves the solution for January 1st, 2022 to a file
python main.py -w 2022-03-01 # Saves the solution for March 1st, 2022 to a file
```