from pathlib import Path
from bs4 import BeautifulSoup
import re
f=Path('/Users/iggy/.hermes/profiles/ignite_team/outbound/krb-live-scrape-html-advancement-community-v1/advancement-community.html')
soup=BeautifulSoup(f.read_text(errors='ignore'),'html.parser')
block=soup.select_one('.gateway-rows')
print(block.prettify()[:8000])