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
| ets Jul 29 2019 12:21:46 | |
| rst:0x1 (POWERON_RESET),boot:0x16 (SPI_FAST_FLASH_BOOT) | |
| configsip: 0, SPIWP:0xee | |
| clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 | |
| mode:2, clock div:2 | |
| secure boot v2 enabled | |
| secure boot verification succeeded | |
| load:0x3fff0030 len:0x1c8c | |
| load:0x40078000 len:0x4194 |
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 subprocess | |
| import csv | |
| import shutil | |
| from pathlib import Path | |
| from datetime import datetime | |
| from tqdm import tqdm | |
| def run_cmd(cmd): | |
| try: | |
| return subprocess.run(cmd, shell=True, check=True, capture_output=True, text=True) |
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
| # /// script | |
| # dependencies = [ | |
| # "requests", | |
| # ] | |
| # /// | |
| import requests | |
| import re | |
| import sys | |
| from datetime import datetime |
OlderNewer