Skip to content

Instantly share code, notes, and snippets.

@AlessandroVaccarino
AlessandroVaccarino / loom_downloader.py
Created June 28, 2024 07:14
Simple Python scripts that, starting from a Loom video link, downloads it locally
#!/usr/bin/python3
import requests
url="https://www.loom.com/share/..."
def extract_id_from_url(url):
urlRet = url.split("/")[-1]
if '?' in urlRet:
urlRet = urlRet.split("?")[0]