-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_input.py
43 lines (38 loc) · 1.26 KB
/
get_input.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import sys
from pathlib import Path
from urllib.request import Request, urlopen
if not Path('./session').is_file():
session = input('No session found! Please enter session cookie: ')
with open('session', 'w') as f:
f.write(session)
f.close()
args = sys.argv
if len(args) != 2:
print(f'Error: incorrect number of arguments!')
exit()
if not args[1].isdigit():
print(f'Error: {sys.argv[0]} is not a number!')
exit()
day = int(args[1])
if not 1 <= day <= 25:
print(f'Error: {day} is not a valid day!')
exit()
input_path = f'./day{day}/' if day >= 10 else f'./day0{day}/'
if not Path(input_path).is_dir():
print(f'Error: input file for day {day} has not been created!')
exit()
with open('./session', 'r') as f:
session = f.read()
f.close()
try:
url = f'https://adventofcode.com/2021/day/{day}/input'
headers = {'Cookie': f'session={session}'}
request = Request(url, headers=headers)
puzzle_input = urlopen(request).read().decode('ascii')
with open(input_path + 'input.txt', 'w') as f:
f.write(puzzle_input)
f.close()
print(f'Successfully retrieved puzzle input for day {day}!')
except Exception as e:
print(f'Unsuccessful in retrieving puzzle input for day {day}:')
print(e)