Skip to content

Commit 457a8a6

Browse files
author
SATYAM TRIPATHI
authored
Update README.md
1 parent 45144c1 commit 457a8a6

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

Diff for: AutomationScripts/Push Notification/README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
hey
1+
We'll look at how we can send push notifications to our phones with a simple click. For reporting, Pushbullet, a popular Python tool, will be utilised. For this, we'll need to login in to your computer and phone as well as establish an account on Pushbullet.com.
2+
3+
#### Let's begin applying this script once we've set up the account on both devices.
4+
- Install the following modules listed below
5+
```python
6+
pip install pushbullet.py==0.9.1
7+
pip install pywebio
8+
```
9+
- Import the following modules
10+
```python
11+
from pushbullet import PushBullet
12+
from pywebio.input import *
13+
from pywebio.output import *
14+
from pywebio.session import *
15+
import time
16+
```
17+
- Go to Pushbullet and obtain the access token.
18+
- Get your Access Token and use the PushBullet method to create an instance.
19+
- Use the push_note function to send data and text inside the function.
20+
21+
![](https://github.com/Iamtripathisatyam/Awesome_Python_Scripts/blob/main/AutomationScripts/Push%20Notification/Images/output.gif)
22+
![](https://github.com/Iamtripathisatyam/Awesome_Python_Scripts/blob/main/AutomationScripts/Push%20Notification/Images/output.png)

0 commit comments

Comments
 (0)