π README.md
A Python-based Wordle solver that interacts with the Wordle API to make word guesses and display feedback.
β
Supports daily, random, and custom word modes
β
Handles invalid words (HTTP 422 error)
β
Clear, user-friendly feedback (β
, π‘, β)
β
Formatted output for readability
Ensure you have Python 3.6+ installed. Check with:
python --versionIf not installed, download it from python.org.
2οΈβ£ Clone This Repository
git clone https://github.com/YOUR_GITHUB_USERNAME/wordle-solver.git
cd wordle-solver3οΈβ£ Install Dependencies
pip install requestsπΉ Usage Run the script
python wordle_solver.pyExample User Interaction
Enter mode (daily/random/custom): random
Enter your guess: apple
========================================
π’ Guess: APPLE
========================================
A: β
Correct
P: β Absent
P: β Absent
L: β Absent
E: β
Correct
========================================Modes Mode Description daily Guess against the daily Wordle random Guess a randomly selected word custom Guess against a user-specified word
- Invalid Word (HTTP 422) β "
β οΈ Invalid guess! Please try another word." - API Issues (Other Errors) β Displays HTTP status code and error message
π Future Improvements
- π Automate word filtering based on feedback
- π€ AI-powered word selection for smarter guesses
- π Game statistics tracking
π€ Contributing
- Fork the repository
- Create a new branch (git checkout -b feature-branch)
- Commit changes (git commit -m "Add new feature")
- Push to GitHub (git push origin feature-branch)
- Open a Pull Request