Skip to content

Instantly share code, notes, and snippets.

View bitrot-alpha's full-sized avatar
🦀

bitrot-alpha

🦀
  • Oregon, US
View GitHub Profile
@jneuendorf-i4h
jneuendorf-i4h / download_vsix.py
Last active April 23, 2025 22:07
Download VSIX from VSCode Marketplace URL (e.g. for VSCodium if OpenVSX does not provide the extension)
"""Based on https://stackoverflow.com/a/38866913/23325241"""
import re
# Attempt to import requests and handle if it's missing
try:
import requests
requests_available = True
except ImportError:
requests_available = False