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 io import BytesIO | |
from pathlib import Path | |
from PIL import Image | |
def resize_image(image_path: Path, max_size: int=3*1024*1024): | |
if image_path.stat().st_size <= max_size: | |
return image_path.read_bytes() | |
img = Image.open(image_path) |
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 shutil | |
import subprocess | |
from pathlib import Path | |
def extract_file(file_path: Path, target_path: Path, password=None, remove_original=False): | |
if isinstance(password, str): | |
password = [password] | |
for pwd in password: | |
cmd = [shutil.which('7z'), 'x', |
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
Python 18 hrs 30 mins βββββββββββββββββββββ 48.8% | |
JavaScript 11 hrs 9 mins βββββββββββββββββββββ 29.4% | |
Other 3 hrs 32 mins βββββββββββββββββββββ 9.3% | |
YAML 2 hrs 37 mins βββββββββββββββββββββ 6.9% | |
TOML 1 hr 39 mins βββββββββββββββββββββ 4.4% |