First commit

This commit is contained in:
2025-08-03 01:04:24 +03:00
commit 68d6afcde6
3 changed files with 62 additions and 0 deletions

9
comp.py Normal file
View File

@@ -0,0 +1,9 @@
import pyperclip
def addToClipBoard(text):
pyperclip.copy(text)
with open('public_table_function.txt', encoding='utf-8') as f:
addToClipBoard(f.read().replace("\t", "").replace("\n", ""))