Ramesh-vani commited on
Commit
9d2b645
·
verified ·
1 Parent(s): 85e5809

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -51,7 +51,7 @@ def inline_resources(soup, base_url):
51
 
52
  return soup
53
 
54
- async def send_html_chunks(websocket, html, url):
55
  if html is not None:
56
  soup = BeautifulSoup(html, 'html.parser')
57
  tags = soup.find_all(True)
@@ -60,7 +60,7 @@ async def send_html_chunks(websocket, html, url):
60
  tag_content = str(tag)
61
  await websocket.send(json.dumps({"type": "chunk", "content": tag_content}))
62
 
63
- await websocket.send(json.dumps({"type": "end", "url": url}))
64
  else:
65
  await websocket.send(json.dumps({"type": "error", "message": "Failed to fetch URL"}))
66
 
 
51
 
52
  return soup
53
 
54
+ async def send_html_chunks(websocket, html):
55
  if html is not None:
56
  soup = BeautifulSoup(html, 'html.parser')
57
  tags = soup.find_all(True)
 
60
  tag_content = str(tag)
61
  await websocket.send(json.dumps({"type": "chunk", "content": tag_content}))
62
 
63
+ await websocket.send(json.dumps({"type": "end",}))
64
  else:
65
  await websocket.send(json.dumps({"type": "error", "message": "Failed to fetch URL"}))
66