diff --git a/README.md b/README.md index f8d0758..2da05de 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,14 @@ if __name__ == "__main__": ## New donations in real-time without Oauth2 + + ```py from donationalerts_api import Alert -``` \ No newline at end of file + +alert = Alert("token") + +@alert.event() +def new_donation(event): + print(event) +```