sayaka1 commited on
Commit
4118efa
·
verified ·
1 Parent(s): a5548af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -1,16 +1,16 @@
1
  import requests
2
  import json
3
  import gradio as gr
 
4
 
5
 
6
  def fetch_tags(image_url):
7
- # Extract image ID from the provided URL
8
- try:
9
- image_id = image_url.split('/')[-1].split('.')[0]
10
- if not image_id.isdigit():
11
- return '[ERROR]: Invalid image URL format.', '', '', ''
12
- except IndexError:
13
- return '[ERROR]: Invalid image URL format.', '', '', ''
14
 
15
  base_url = 'https://danbooru.donmai.us/posts'
16
  response = requests.get(f'{base_url}/{image_id}.json')
 
1
  import requests
2
  import json
3
  import gradio as gr
4
+ import re
5
 
6
 
7
  def fetch_tags(image_url):
8
+ # Try to extract the image ID from the URL
9
+ match = re.search(r'https://danbooru.donmai.us/posts/(\d+)', image_url)
10
+ if not match:
11
+ return '[ERROR]: Invalid image URL format. Please use a valid Danbooru URL.', '', '', ''
12
+
13
+ image_id = match.group(1) # Extract image ID from URL
 
14
 
15
  base_url = 'https://danbooru.donmai.us/posts'
16
  response = requests.get(f'{base_url}/{image_id}.json')