likhonsheikh commited on
Commit
4f08833
·
verified ·
1 Parent(s): 84aee2d

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. .gitignore +8 -0
  2. README.md +6 -5
  3. app.py +7 -0
  4. requirements.txt +0 -0
.gitignore ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ __pycache__/
2
+ *.py[cod]
3
+ *$py.class
4
+ .env
5
+ .venv/
6
+ venv/
7
+ *.log
8
+ .DS_Store
README.md CHANGED
@@ -1,12 +1,13 @@
1
  ---
2
- title: Cdp Browser Sandbox
3
- emoji: 🌖
4
- colorFrom: indigo
5
  colorTo: purple
6
  sdk: gradio
7
- sdk_version: 6.0.2
8
  app_file: app.py
9
  pinned: false
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: CDP Browser Sandbox
3
+ emoji: 🌐
4
+ colorFrom: blue
5
  colorTo: purple
6
  sdk: gradio
7
+ sdk_version: 4.31.0
8
  app_file: app.py
9
  pinned: false
10
  ---
11
 
12
+ # CDP Browser Sandbox
13
+ Web scraping tools
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(url):
4
+ return f"You entered: {url}"
5
+
6
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text", title="CDP Browser Sandbox")
7
+ demo.launch()
requirements.txt ADDED
File without changes