Skip to content

Instantly share code, notes, and snippets.

@Yuma-Tsushima07
Last active November 23, 2024 16:44
Show Gist options
  • Select an option

  • Save Yuma-Tsushima07/4d7c5f462d808f4843ae6e3d17e83f1b to your computer and use it in GitHub Desktop.

Select an option

Save Yuma-Tsushima07/4d7c5f462d808f4843ae6e3d17e83f1b to your computer and use it in GitHub Desktop.
Discord RPC Python
from pypresence import Presence
import time
client_id = "ID" # Id from the application developer portal
RPC = Presence(client_id)
RPC.connect()
RPC.update(state="Text",
details="Some text",
large_image="Picturename",
large_text="Large image text label",
) # Set the presence
while 1:
time.sleep(15)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment