diff --git a/arknights-data-science/ingestion/scrape_arknights_gamepress.py b/arknights-data-science/ingestion/scrape_arknights_gamepress.py index 3eadbac..8ecc668 100644 --- a/arknights-data-science/ingestion/scrape_arknights_gamepress.py +++ b/arknights-data-science/ingestion/scrape_arknights_gamepress.py @@ -26,6 +26,9 @@ for op in op_list: # Get the name and their personal page from these HTML elements name = op.find("div", class_="operator-title").a.text + # If the name is 'tulip' or 'friston-3', skip this iteration + if name.lower() in ['tulip', 'friston-3']: + continue page = "https://gamepress.gg" + \ op.find("div", class_="operator-title").a["href"] # Add the new information to the dictionary