mr2along commited on
Commit
18d567f
1 Parent(s): e45342e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def parse_story_url(story_url):
13
  match = re.search(r"https://truyenfull\.tv/([^/]+)(?:-f\d+)?\.(\d+)/", story_url)
14
  if match:
15
  story_name = match.group(1) # Trích xuất tên truyện
16
- story_id = match.group(2) # Trích xuất ID truyện
17
  api_url = f"https://truyenfull.tv/api/chapters/{story_id}/" # Tạo URL API
18
  base_url = f"https://truyenfull.tv/{story_name}/chuong-" # Tạo URL cơ bản cho các chương
19
  return story_name, story_id, api_url, base_url # Trả về thông tin đã trích xuất và tạo
 
13
  match = re.search(r"https://truyenfull\.tv/([^/]+)(?:-f\d+)?\.(\d+)/", story_url)
14
  if match:
15
  story_name = match.group(1) # Trích xuất tên truyện
16
+ story_id = match.group(3) # Trích xuất ID truyện
17
  api_url = f"https://truyenfull.tv/api/chapters/{story_id}/" # Tạo URL API
18
  base_url = f"https://truyenfull.tv/{story_name}/chuong-" # Tạo URL cơ bản cho các chương
19
  return story_name, story_id, api_url, base_url # Trả về thông tin đã trích xuất và tạo