- Joined
- Feb 13, 2020
my favorite part of this is the implication that he downloads all his pornography in bulk indiscriminately during his goon sessions, and then presumably during the post-nut clarity shamefully sorts them manually into gif, video, and img folders. Here buddy, i made you a little present to save you some time.
Python:
#horseSort.py
from os import listdir
from shutil import move
files = listdir()
vids = ["webm","mp4"]
pics = ["png", "jpg", "jpeg", "webp"]
gifs = ["gif"]
for file in files:
temp = file.split(".")
if len(temp) > 1:
if temp[1] in pics:
move(f"{file}", f"./XXX Pics/{file}")
elif temp[1] in vids:
move(f"{file}", f"./XXX Vids/{file}")
elif temp[1] in gifs:
move(f"{file}", f"./XXX Gifs/{file}")
else:
print(f"{file} couldn't be sorted. Add filetype if unsupported :)")
print(f"Shame hidden!")
Last edited: