Update app.py
Browse files
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(
|
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
|