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.

11 lines
250 B

  1. from adb import Device
  2. import pyperclip
  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())