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 | |
from datetime import datetime | |
from tkinter import * | |
from tkinter.filedialog import askdirectory | |
import shutil | |
def photoSort(): | |
path = askdirectory(title='Select your folder') | |
for i in os.listdir(path): | |
if i.endswith('.XML'): |
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
""" | |
Made by @austinyen56 | |
Allows automatic update for default max framerate in wows. Also removes all unecessary VO mods. | |
""" | |
import os | |
import xml.etree.ElementTree as ET | |
import shutil |
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
# [YouTube Downloader] | |
# Made by @austinyen56 | |
# Allows you to download music from most streaming services (YT, SoundCloud... etc) in multiple formats(mp3, wav, flac) | |
# Supports thumbnail embedding for mp3 option only | |
# - Requires yt-dlp to be installed (python -m pip install -U yt-dlp) | |
# - Must download and add ffmpeg.exe in 'C:\Users\<Name>\AppData\Local\Programs\Python\Python3<ver>\Scripts' in addition with the ffmpeg library | |
import os |