Upload files to ''

This commit is contained in:
MrV 2021-11-24 16:46:54 +00:00
parent 129830449d
commit f3ba7096b8
5 changed files with 28 additions and 2 deletions

View File

@ -1,2 +1,8 @@
# ascii-sender
ascii-chatter
------------------------
send ascii art images using a message box
WARNING: may trigger some spam filters
![Demo](demo.png)

5
ascii.txt Normal file
View File

@ -0,0 +1,5 @@
####### ##### ##### #######
# # # #
# ##### ##### #
# # # #
# ##### ##### #

BIN
demo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

14
main.py Normal file
View File

@ -0,0 +1,14 @@
import pyautogui
import time
for i in range(5, 0, -1):
print(i)
time.sleep(i)
print("GO!")
with open("ascii.txt") as f:
txt = f.read()
txt = txt.replace("\r\n", "\n") # Windows compat
txt += "\n"
pyautogui.typewrite(txt, interval=0.01)

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pyautogui