feat: add vikingfile and megadb scraping functionality to SteamripScraper

This commit is contained in:
Vxrtrauter
2026-04-10 01:31:02 +02:00
parent 040a8ad728
commit f4cde66748
3 changed files with 86 additions and 14 deletions
+14
View File
@@ -0,0 +1,14 @@
from utils.logging.logs import consoleLog
import webbrowser
import re
def scrape_megadb(url):
match = re.search(r"megadb\.net/([a-zA-Z0-9]+)", url)
if not match:
consoleLog("MegaDB: Invalid URL")
return None
consoleLog("MegaDB: Captcha required, launching browser...")
webbrowser.open(url)
return None