feat: Added tools page
All checks were successful
Build Docker / BuildImage (push) Successful in 2m9s

This commit is contained in:
2025-10-26 18:00:18 +11:00
parent f4f5f47ee7
commit 8f774ba8f0
9 changed files with 341 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import datetime
from typing import Optional, Dict, Union, Tuple
import re
from dateutil.parser import parse
import json
# HTTP status codes
HTTP_OK = 200
@@ -250,3 +251,7 @@ def parse_date(date_groups: list[str]) -> str | None:
except (ValueError, TypeError):
return None
def get_tools_data():
with open("data/tools.json", "r") as f:
return json.load(f)