Skip to content

Instantly share code, notes, and snippets.

View Like4Schnitzel's full-sized avatar

Schnitzel Like4Schnitzel

  • Vienna, Austria
View GitHub Profile
@Like4Schnitzel
Like4Schnitzel / split.py
Created March 24, 2024 09:17
Python file splitter to get around discord size limits
import sys
maxBytes = 25000000 # max size of a split file part in bytes
if len(sys.argv) > 1:
filePath = sys.argv[1]
else:
filePath = input("Enter the path to a file: ")
with open(filePath, "rb") as f1: