Ramesh-vani commited on
Commit
771dd10
·
verified ·
1 Parent(s): 819d6d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -5
app.py CHANGED
@@ -54,12 +54,15 @@ def inline_resources(soup, base_url):
54
  async def send_html_chunks(websocket, soup):
55
 
56
 
57
- tags = soup.find_all(True)
 
 
58
 
59
- tags = [str(tag) for tag in soup.find_all(True)]
60
-
61
- for tag_content in tags:
62
- await websocket.send(json.dumps({"type": "chunk", "content": tag_content}))
 
63
 
64
  await websocket.send(json.dumps({"type": "end",}))
65
 
 
54
  async def send_html_chunks(websocket, soup):
55
 
56
 
57
+ # Convert the BeautifulSoup object back to a string and split into lines
58
+ html_str = str(soup)
59
+ lines = html_str.split('\n')
60
 
61
+ # Send each line as a separate chunk
62
+ for line in lines:
63
+ line = line.strip()
64
+ if line: # Send non-empty lines
65
+ await websocket.send(json.dumps({"type": "chunk", "content": line}))
66
 
67
  await websocket.send(json.dumps({"type": "end",}))
68