Wordles is a Flask web app that automatically collects urls for Wordle variants. It uses a few sources, including Wordle subreddits. An instance is hosted here (with limited functionality due to the hosting plan).
The method used to scrape Wordle variant urls is still very inaccurate. The list contains many incorrect urls and currently misses correct urls as well. I plan to do some work on this.
Install packages with pip.
pip install -r requirements.txt
Run flask app
flask run
Environment variables:
set FLASK_APP=flaskr
set FLASK_ENV=<environment>
set DATABASE_URL=<postgres database url>
set WDL_REDDIT_ID=<reddit client id>
set WDL_REDDIT_SECRET=<reddit client secret>
set WDL_SECRET_KEY=<secret key for security>
set WDL_ADDRESS_LIMIT=<limit for addresses stored, in case of database limits>
set WDL_SOURCES=<sources list>
Sources list example:
reddit wordle
...
<source> <info>
If you have any suggestions, feel free to open an issue.