Skip to content

Instantly share code, notes, and snippets.

@waterrmalann
Created October 9, 2021 08:28
Show Gist options
  • Save waterrmalann/a1233cef2cec93f6fbb44e73d0d6e48c to your computer and use it in GitHub Desktop.
Save waterrmalann/a1233cef2cec93f6fbb44e73d0d6e48c to your computer and use it in GitHub Desktop.
Super simple python utility to normalize clipboard content in real time.
# clipboardNormalizer.py
"""
A super-simple and silly python program that normalizes content in your clipboard if there's foriegn characters.
I originally made it so that I can copy-paste stuff from the Discord Bot DankMemer's economy system which uses foreign characters instead of spaces to discourage copy pasting.
This program is super useless for anything besides that, or so I think. Congratulations if you can find a proper use case.
"""
from pyperclip import copy, paste
from unidecode import unidecode
from time import sleep
CHECK_DELAY = 1 # in seconds
def has_unicode_content(string):
for char in string:
if ord(char) > 127: return True
return False
last_string = ''
while True:
sleep(CHECK_DELAY)
clipboard = paste()
# Avoid further computing if content matches last normalized content or null.
if not clipboard or clipboard == last_string: continue
if has_unicode_content(clipboard):
normalized = unidecode(clipboard)
if normalized != clipboard:
copy(normalized)
last_string = normalized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment