first commit

This commit is contained in:
Tomas Dvorak
2026-04-13 17:46:58 +02:00
commit 6e8fedf534
234 changed files with 53808 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
def handle_unicode(string: str):
"""
Handles Unicode errors by ignoring unicode characters
"""
return string.encode("utf-16", "ignore").decode("utf-16")