Skip to content

Instantly share code, notes, and snippets.

View bradburgess37's full-sized avatar

bradburgess37

View GitHub Profile
@bradburgess37
bradburgess37 / Drifttest.py
Created October 28, 2025 00:30
V14.3 Global Drift Test script
# create_gist.py
import requests, json, pathlib
TOKEN = "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" # PAT with 'gist' scope
FILEPATH = pathlib.Path("Drifttest.py")
payload = {
"description": "V14.3 Global Drift Test script",
"public": True,
"files": { FILEPATH.name: { "content": FILEPATH.read_text(encoding="utf-8") } }
}