91download.com supports a wide range of platforms, including YouTube, Facebook, Twitter, TikTok, Instagram, Dailymotion, Reddit, Bilibili, Douyin, Xiaohongshu and Zhihu, etc. Click the download button below to parse and download the current video
check if the following link is clickable```python import re
def is_clickable_link(link): # Regex to check if a link is clickable (http or https) pattern = re.compile(r'https?://[^\s]+') match = pattern.match(link) return bool(match)
link = "http://example.com" print(is_clickable_link(link)) # Output: True
link = "www.example.com" print(is_clickable_link(link)) # Output: False ```
Share on Twitter Share on Facebook