Skip to content

Instantly share code, notes, and snippets.

View LordOfPolls's full-sized avatar
👋

LordOfPolls LordOfPolls

👋
View GitHub Profile
import random
import time
from pypresence import Presence
print("Connecting to client...")
client_id = "834696811729125417" # the app ID you're playing
RPC = Presence(client_id=client_id)
RPC.connect()
@LordOfPolls
LordOfPolls / GistDelete.py
Created March 27, 2018 20:54
Delete all Gists
from github import Github as git
import os
g=git("[token]")
i=0
for gist in g.get_user().get_gists():
i = i+1
gist.delete()
print("{}| Gist {}|| Deleted".format(i, gist.description))