This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <meta name="loja-id" content="ecf68475-0fe1-4224-a2f3-cb1cd3311d84" /> | |
| <!-- HTML Meta Tags --> | |
| <title>Theme Light Shop | Template de Loja Virtual Moderna</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Base da API pública caBRAPI | |
| * @constant {string} | |
| */ | |
| const BASE_URL = "https://api.cabrapi.com.br"; | |
| /** | |
| * Wrapper para requisições fetch | |
| * @param {string} url | |
| * @param {RequestInit} [options] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyautogui | |
| import time | |
| import threading | |
| from datetime import datetime | |
| from pynput import keyboard | |
| pyautogui.FAILSAFE = False | |
| DELAY = 0.6 |