diff --git a/examples/rpc-debug.py b/examples/rpc-debug.py new file mode 100644 index 0000000..f607ef1 --- /dev/null +++ b/examples/rpc-debug.py @@ -0,0 +1,15 @@ +### Basically it's "print-rpc-output.py" but with more informative output :) + +import discordrpc + +# Add debug=True to get more outputs +# Default = False +rpc = discordrpc.RPC(app_id=123456789, debug=True) + +rpc.set_activity( + state="A super simple rpc", + details="simple RPC" + ) + + +rpc.run() \ No newline at end of file