Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down