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
#Mapping my storage sizes to corresponding MAL entry for my list | |
#This work is licensed under a Creative Commons Attribution 4.0 International License | |
#https://creativecommons.org/licenses/by/4.0/, | |
#created by github.com/dixit92 | |
import os | |
from collections import OrderedDict | |
import requests | |
""" |
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 os | |
import sys | |
if len(sys.argv) != 2: | |
print("Usage: python3 myRename.py PATH\\TO\\DIR") | |
sys.exit() | |
parent_dir_path = sys.argv[1].strip('\"') | |
print("Parent Directory: ", parent_dir_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
#!/usr/bin/env python3 | |
""" | |
Webcomic CBZ Unified Processor - Merge all images then split by target aspect ratio | |
Optimized for webcomic reading as a single continuous strip. | |
""" | |
import os | |
import sys | |
import zipfile | |
import tempfile |