Skip to content

Commit 0e69592

Browse files
committed
Merge branch 'prathimacode-hub:main' into patch-3
2 parents 3146b2f + 325a78a commit 0e69592

File tree

30 files changed

+413
-0
lines changed

30 files changed

+413
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Here there is screenshot of output.
7.59 KB
Loading
8.93 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Title: Facebook Messenger Automation
2+
3+
Short description of package/script: Here we will send the message in messenger auotmatically.Here we just need to open messenger in browser and then run the program.
4+
Here with use of pyautogui and time library we can send msg easily.
5+
In the program the message is written which can be changed as per requirement and we can also specify the number of times message to be printed.
6+
(We can also use this program for spamming but I don't suggest that.)
7+
8+
List out the libraries imported: pyautogui ,time
9+
10+
Setup instructions: First we need to open messenger in browser and then we have to open chat with targeted person to whom we need to send message and then run the program.
11+
Here in the script we had written the message(this can be customised) that is to be send and here we can also specify the number of times the message to be sent(if we need to send message multiple times) .
12+
13+
14+
15+
Output
16+
![output(facebook messenger)](https://user-images.githubusercontent.com/71593494/121766351-c1036b80-cb6e-11eb-9603-aaf23d394581.png)
17+
![output(facebook)](https://user-images.githubusercontent.com/71593494/121767191-7258d000-cb74-11eb-81bf-8308d94d4922.png)
18+
19+
20+
21+
Author:
22+
Neel Shah
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import pyautogui
2+
import time
3+
4+
message = 5 #Here message variable stores the no. of times message prints
5+
while message:
6+
time.sleep(4)
7+
pyautogui.typewrite("Hello ,How are you?"
8+
"What is your today's schedule , I want a meet with you?"
9+
"Please reply me as early as possible.")
10+
time.sleep(2)
11+
pyautogui.press('enter')
12+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Libraries used: pyautogui , time

AutomationScripts/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ Automation Scripts is a collection of scripts/projects which helps us in automat
66

77
- [LaunchMaps](https://github.com/prathimacode-hub/Awesome_Python_Scripts/tree/main/AutomationScripts/LaunchMaps)
88
- [Battery Notification](https://github.com/prathimacode-hub/Awesome_Python_Scripts/tree/main/AutomationScripts/Battery%20Notification)
9+
- [Facebook Messenger Automation](https://github.com/prathimacode-hub/Awesome_Python_Scripts/tree/main/AutomationScripts/Facebook%20Messenger%20Automation)
10+
- [Weather Notifier](https://github.com/Komal-99/Awesome_Python_Scripts/tree/weather/AutomationScripts/Weather%20Notifier)
66.2 KB
Loading
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Weather temperature detection
2+
3+
- It is python script to get weather notification on your desktop.
4+
- After every 20 second the notification comes.
5+
## workflow
6+
* It works on bs4 and times library of python to automate google search when the program is runned.
7+
* Their are various features used to scrape data from web and then put in notified format.
8+
### Output Screenshot
9+
10+
11+
12+
### Getting Started
13+
14+
1. Install all Python dependencies.
15+
16+
```
17+
pip install -r requirements.txt
18+
```
19+
20+
2. Navigate into `AutomationScripts`.
21+
22+
```
23+
cd AutomationScripts
24+
```
25+
26+
3. Launch the script for compilation of program
27+
28+
```
29+
python weather.py
30+
```
31+
4. Output Screenshot.
32+
33+
<img src="https://github.com/Komal-99/Awesome_Python_Scripts/blob/weather/AutomationScripts/Weather%20Notifier/Images/Screenshot.jpg">
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
time
2+
requests
3+
json
4+
bs4
5+
win10toast

0 commit comments

Comments
 (0)