initial commit

This commit is contained in:
Rushil Umaretiya 2024-01-25 02:19:40 -05:00
commit c6df612e0c
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
3 changed files with 38 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# rm-xword
Just create a `cookie.txt` in the repo with the `document.cookie` from [NYT Games](https://nytimes.com/games).

35
get_xword.py Executable file
View File

@ -0,0 +1,35 @@
import requests
from datetime import datetime
import subprocess
# Function to read cookie from a file
def read_cookie_from_file(file_path):
with open(file_path, 'r') as file:
return file.read().strip()
# Get the cookie from cookies.txt
cookie = read_cookie_from_file("cookies.txt")
# Get the current date and format it as [MONTH][DAY][2-digit-year]
current_date = datetime.now()
formatted_date = current_date.strftime("%b%d%y")
# Construct the URL with the formatted date
url = f"https://www.nytimes.com/svc/crosswords/v2/puzzle/print/{formatted_date}.pdf"
headers = {
'Referer': 'https://www.nytimes.com/crosswords/archive/daily',
'Cookie': cookie
}
response = requests.get(url, headers=headers, stream=True)
if response.status_code == 200:
with open(f"xwords/{formatted_date}.pdf", 'wb') as f:
f.write(response.content)
subprocess.run(["rmapi", "put", f"xwords/{formatted_date}.pdf", "/art/xword"])
else:
print("Failed to download the file. Status code:", response.status_code)

0
xwords/.gitkeep Normal file
View File