IotaCluster commited on
Commit
8a6fe3b
·
verified ·
1 Parent(s): 994f457

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -15
app.py CHANGED
@@ -1,21 +1,35 @@
1
  import gradio as gr
2
- from extract import take_webdata
 
 
 
 
 
 
 
 
 
3
 
4
- def visualize(url: str):
5
  try:
6
- img, title = take_webdata(url)
7
- return img, f"✅ Title: {title}"
8
- except Exception as e:
9
- return None, f"❌ Error: {e}"
 
 
 
 
 
 
10
 
11
- with gr.Blocks() as demo:
12
- gr.Markdown("## 🌐 Website Screenshot + Title Extractor (Playwright-powered)")
13
- url_box = gr.Textbox(label="Enter URL (e.g., https://www.amazon.in)")
14
- btn = gr.Button("Proceed")
15
 
16
- with gr.Row():
17
- img_out = gr.Image(type="pil", label="Screenshot")
18
- text_out = gr.Textbox(label="Page Title / Error")
 
 
 
 
19
 
20
- btn.click(fn=visualize, inputs=[url_box], outputs=[img_out, text_out])
21
- demo.launch()
 
1
  import gradio as gr
2
+ from selenium import webdriver
3
+ from selenium.common.exceptions import WebDriverException
4
+ from PIL import Image
5
+ from io import BytesIO
6
+
7
+ def take_screenshot(url):
8
+ options = webdriver.ChromeOptions()
9
+ options.add_argument('--headless')
10
+ options.add_argument('--no-sandbox')
11
+ options.add_argument('--disable-dev-shm-usage')
12
 
 
13
  try:
14
+ wd = webdriver.Chrome(options=options)
15
+ wd.set_window_size(1080, 720) # Adjust the window size here
16
+ wd.get(url)
17
+ wd.implicitly_wait(10)
18
+ screenshot = wd.get_screenshot_as_png()
19
+ except WebDriverException as e:
20
+ return Image.new('RGB', (1, 1))
21
+ finally:
22
+ if wd:
23
+ wd.quit()
24
 
25
+ return Image.open(BytesIO(screenshot))
 
 
 
26
 
27
+ iface = gr.Interface(
28
+ fn=take_screenshot,
29
+ inputs=gr.Textbox(label="Website URL", value="https://kargaranamir.github.io"),
30
+ outputs=gr.Image(type="pil", label="Screenshot", height=360, width=540), # Adjust the image size here
31
+ title="Website Screenshot",
32
+ description="Take a screenshot of a website."
33
+ )
34
 
35
+ iface.launch()