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 sys | |
| import os | |
| import glob | |
| import zipfile | |
| import re | |
| from colorama import init, Fore, Style | |
| ext = re.compile(r"\.(zip|bz2|bzip2|xz|lzma|z)\Z", flags = re.I) |
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
| // ==UserScript== | |
| // @name Fix Fanbox external links | |
| // @namespace https://www.fanbox.cc/ | |
| // @version 1.0 | |
| // @description This script fix Mega links at the moment | |
| // @author X4 | |
| // @match https://*.fanbox.cc/posts/* | |
| // @match https://*.fanbox.cc/@*/posts/* | |
| // @icon https://icons.duckduckgo.com/ip2/fanbox.cc.ico | |
| // @grant none |
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
| from typing import Annotated | |
| from pathlib import Path | |
| import cv2 | |
| import numpy as np | |
| import typer | |
| app = typer.Typer(no_args_is_help=True) | |
OlderNewer