Fsoky

Rich Presence | Fsoky

Feb 20th, 2021 (edited)
1,914
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.59 KB | None | 0 0
  1. from pypresence import Presence
  2. from time import time
  3.  
  4. RPC = Presence("")
  5. btns = [
  6.     {
  7.         "label": "YouTube",
  8.         "url": "https://www.youtube.com/channel/UCeiC2G8vcz6tBmvVo8ydMgQ"
  9.     },
  10.     {
  11.         "label": "VK",
  12.         "url": "https://vk.com/ansqqq"
  13.     }
  14. ]
  15.  
  16. RPC.connect()
  17. RPC.update(
  18.     state="Сладкий персик!",
  19.     details="Розовый персик!",
  20.     start=time(),
  21.     buttons=btns,
  22.     large_image="peach",
  23.     small_image="heart",
  24.     large_text="Ты мой персик :3",
  25.     small_text="Люблю тебя!"
  26. )
  27.  
  28. input() # Чтобы программа резко не закрывалась.
Add Comment
Please, Sign In to add comment