[virtualbox] Add automation (#438)

Using https://www.virtualbox.org/wiki/Download_Old_Builds.
This commit is contained in:
Marc Wrobel
2025-05-17 11:25:54 +02:00
parent dacf569bfc
commit aa43bf6602
2 changed files with 36 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ def parse_month_year_date(text: str, formats: list[str] = frozenset([
"%B %Y", # January 2020
"%b %Y", # Jan 2020
"%Y-%m", # 2020-01
"%Y/%m", # 2020/01
"%m-%Y", # 01-2020
"%m/%Y", # 01/2020
])) -> datetime: