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

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