Skip to content

Instantly share code, notes, and snippets.

View goxofy's full-sized avatar
💭
stay for u.

TinK goxofy

💭
stay for u.
View GitHub Profile
@goxofy
goxofy / test.py
Created April 13, 2024 03:30
test
from pushover_open_client import Client, Message
class Pushover:
def __init__(self):
self.client = Client("creds.json")
def messageCallback(self, msgList):
if msgList:
for msg in msgList:
self.client.deleteMessages(msgList[-1].id)