You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
251 B

  1. import pyperclip
  2. from adb import Device
  3. def open_youtube(Device, link):
  4. Device.shell(*("am start -a android.intent.action.VIEW".split(" ")), link)
  5. if __name__ == "__main__":
  6. d = Device.prim_device()
  7. open_youtube(d, pyperclip.paste())