├── README.md └── vimp.py /README.md: -------------------------------------------------------------------------------- 1 | # python_message_generate
2 | So it is basically used when a user
3 | want to send same message repeatdly to
4 | a single user. 5 |
6 | To run this program
7 | Step 1: open vs code
8 | Step 2: write the following code
9 | Step 3: open the Terminal
10 | Step 4: type "pip install pyautogui" in the Terminal
11 | Step 5: Now run the code
12 | Step 6: open were you wanna send and press enter button.
13 | open the specified 14 | chat beforly where you wanted to send the messages..... 15 | -------------------------------------------------------------------------------- /vimp.py: -------------------------------------------------------------------------------- 1 | import pyautogui 2 | import time 3 | time.sleep(4) 4 | count=0 5 | while(count<=4): 6 | pyautogui.typewrite("type anything you want") 7 | pyautogui.press("enter") 8 | count=count+1 --------------------------------------------------------------------------------