-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add downloader for Financial Times puzzles #180
base: main
Are you sure you want to change the base?
Conversation
I just want to say it's understandable if you don't want to add this one, either because of the added dependency or the deobfuscation involved. It was no great amount of work on my part, I just set it as my Sunday project (last Sunday), and I've been testing it every day since then to make sure it worked reliably. Hopefully FT does not syndicate their crosswords from some other, more easily scraped source. I attempted to figure out if this was the case, but didn't see any evidence of it. |
I tried to test this change, but I just get an error stating that the keyword is unrecognized.
|
Could you provide reproduction steps? The following works for me: git clone https://github.com/thisisparker/xword-dl
cd xword-dl
git fetch origin pull/180/head:ft
git checkout ft
python -m xword_dl ftc |
@afontenot you are correct, this does work for me, I was doing it wrong. |
This was working for me, but today it seems to fail:
|
Can confirm, I'll look at it. |
So the issue is that there's a bogus clue, it's even in the web interface: The issue is that there are two 21 Down clues, and one of them is at the end with a 21D label instead of the usual clue number.
|
Ahh. Makes sense. |
This adds a downloader for the three Financial Times puzzles - the daily Cryptic, the weekly Polymath, and weekly Weekend puzzle.
This adds a new dependency on pycryptodome for AES decryption. I approached this in such a way that the dependency could easily be swapped out with a different one if preferable.