Ramesh-vani commited on
Commit
75c4dc3
·
verified ·
1 Parent(s): 554f2f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -3
app.py CHANGED
@@ -55,7 +55,13 @@ def inline_resources(soup, base_url):
55
 
56
  return soup
57
 
58
-
 
 
 
 
 
 
59
  def auto_detect_mode(content):
60
  if isinstance(content, str):
61
  return 'w' # If content is a string, it's text
@@ -581,7 +587,12 @@ async def handle_user_input(websocket,key, process, connected,process_ids):
581
  "type": "web-data",
582
  "data": str(soup),
583
  }
584
- await websocket.send(json.dumps(response_data))
 
 
 
 
 
585
 
586
  elif event["command"]["type"]=="create":
587
  if event["item"]=="folder":
@@ -972,7 +983,12 @@ async def exe(websocket,connected,key,process_ids):
972
  "type": "web-data",
973
  "data": str(soup),
974
  }
975
- await websocket.send(json.dumps(response_data))
 
 
 
 
 
976
 
977
  elif event["command"]["type"]=="create":
978
  if event["item"]=="folder":
 
55
 
56
  return soup
57
 
58
+ async def send_html_chunked(websocket, html):
59
+ chunk_size = 1024 # Define your chunk size here
60
+ for i in range(0, len(html), chunk_size):
61
+ chunk = html[i:i + chunk_size]
62
+ await websocket.send(chunk)
63
+ await asyncio.sleep(0.1) # Add a small delay if needed
64
+
65
  def auto_detect_mode(content):
66
  if isinstance(content, str):
67
  return 'w' # If content is a string, it's text
 
587
  "type": "web-data",
588
  "data": str(soup),
589
  }
590
+ #await websocket.send(json.dumps(response_data))
591
+ # Convert the final soup to a string
592
+ final_html = str(soup)
593
+
594
+ # Send the HTML in chunks
595
+ await send_html_chunked(websocket, final_html)
596
 
597
  elif event["command"]["type"]=="create":
598
  if event["item"]=="folder":
 
983
  "type": "web-data",
984
  "data": str(soup),
985
  }
986
+ #await websocket.send(json.dumps(response_data))
987
+ # Convert the final soup to a string
988
+ final_html = str(soup)
989
+
990
+ # Send the HTML in chunks
991
+ await send_html_chunked(websocket, final_html)
992
 
993
  elif event["command"]["type"]=="create":
994
  if event["item"]=="folder":