This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |