Skip to content

Instantly share code, notes, and snippets.

View Nriver's full-sized avatar
😶‍🌫️
relax

Nate River Nriver

😶‍🌫️
relax
View GitHub Profile
@Nriver
Nriver / clear.py
Created September 25, 2025 02:13
Clear github hidden notifications
import urllib.request
import json
# ⚠️ Replace this with your GitHub personal access token (must include notifications scope)
GITHUB_TOKEN = "your_personal_access_token_here"
BASE_URL = "https://api.github.com"
HEADERS = {
"Authorization": f"Bearer {GITHUB_TOKEN}",
"Accept": "application/vnd.github+json",