OTT_Bot / kb_builder /scraper /lesson_scraper.py
OnlyTheTruth03's picture
Initial RAG bot
709c859
raw
history blame contribute delete
110 Bytes
def fetch_lesson_html(page, url):
page.goto(url)
page.wait_for_load_state("networkidle")
return page.content()