With the current state of automation scripts, this is not possible anymore to launch script with multiple auto configs.
14 lines
649 B
Python
14 lines
649 B
Python
from common import dates, http
|
|
from common.releasedata import ProductData, config_from_argv
|
|
|
|
config = config_from_argv()
|
|
with ProductData(config.product) as product_data:
|
|
html = http.fetch_html(config.url)
|
|
|
|
for release_table in html.find("div", class_="ibm-container-body").find_all("table", class_="ibm-data-table ibm-grid"):
|
|
for row in release_table.find_all("tr")[1:]: # for all rows except the header
|
|
cells = row.find_all("td")
|
|
version = cells[0].text.strip("AIX ").replace(' TL', '.')
|
|
date = dates.parse_month_year_date(cells[1].text)
|
|
product_data.declare_version(version, date)
|