Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pyperclip
- import win32com.client
- # Criando uma instância do objeto Shell do Windows
- shell = win32com.client.Dispatch("WScript.Shell")
- # Abrindo uma nova janela do Chrome e esperando que ela seja ativada
- shell.SendKeys("^t")
- shell.AppActivate("Google Chrome")
- # Aguardando um breve intervalo para garantir que a janela do Chrome esteja ativa
- import time
- time.sleep(1)
- # Copiando a URL da barra de favoritos para a área de transferência
- shell.SendKeys("^l")
- shell.SendKeys("^c")
- # Obtendo a URL da área de transferência
- url = pyperclip.paste()
- # Exibindo a URL copiada
- print("URL copiada:", url)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement