diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a558087 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +requests~=2.26.0 +bs4~=0.0.1 +beautifulsoup4~=4.10.0 +setuptools~=56.0.0 diff --git a/tools/aoc.py b/tools/aoc.py index 22fa9ba..2dca347 100644 --- a/tools/aoc.py +++ b/tools/aoc.py @@ -1,13 +1,12 @@ import os import re +import requests import time import webbrowser - -import requests from bs4 import BeautifulSoup from tools.datafiles import JSONFile from tools.stopwatch import StopWatch -from typing import Any, Callable, Dict, List, Tuple, Type, Union +from typing import Any, Callable, List, Tuple, Type, Union from .tools import get_script_dir BASE_PATH = get_script_dir()