From f44f06dd1d66bd059e500989f50dbbcf90c722dd Mon Sep 17 00:00:00 2001 From: Halhadus Date: Sat, 15 Feb 2025 21:22:45 +0300 Subject: [PATCH] Added support for other providers --- websitemodule.py | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/websitemodule.py b/websitemodule.py index 2ed9448..b36affc 100644 --- a/websitemodule.py +++ b/websitemodule.py @@ -1,8 +1,12 @@ import os import sqlite3 import datetime -# For now import flask +import re + +def is_youtube_id(video_id): + """Check if the video_id is a valid YouTube ID""" + return re.match(r'^[a-zA-Z0-9_-]{11}$', str(video_id)) is not None def read_music_database(): conn = sqlite3.connect("assets/localwrapped/music.db") @@ -61,7 +65,6 @@ def generatehtmlcode(year: int = datetime.datetime.now().year): -