-
Notifications
You must be signed in to change notification settings - Fork 0
/
messanger.py
29 lines (29 loc) · 1.08 KB
/
messanger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import pyautogui
import time
import os
banner2='225609'
banner='''
:'#######::'########:::'#######:::'#######::'########:'##::::'##::'#######::
'##.... ##: ##.... ##:'##.... ##:'##.... ##:... ##..:: ##:::: ##:'##.... ##:
..::::: ##: ##:::: ##: ##:::: ##: ##:::: ##:::: ##:::: ##:::: ##:..::::: ##:
:'#######:: ########:: ##:::: ##: ##:::: ##:::: ##:::: ##:::: ##::'#######::
'##:::::::: ##.. ##::: ##:::: ##: ##:::: ##:::: ##::::. ##:: ##:::...... ##:
##:::::::: ##::. ##:: ##:::: ##: ##:::: ##:::: ##:::::. ## ##:::'##:::: ##:
#########: ##:::. ##:. #######::. #######::::: ##::::::. ###::::. #######::
.........::..:::::..:::.......::::.......::::::..::::::::...::::::.......:::
'''
os.system('clear')
print(banner)
print("Enter unlock password:")
password=int(input('=>'))
for x in banner2:
if password != 2009:
print("Invalid password!")
exit()
print('Enter you message')
message=input('=>')
for i in range(0,10000000):
time.sleep(0)
pyautogui.typewrite(message)
time.sleep(0.1)
pyautogui.press('enter')