Raspberry Pi Web Scraping and Push Notifications

Had the Raspberry Pi for a while now and haven’t really done much with it so I decided to build something semi-useful. Basically we’ll be scraping the web using:- Python (programming language) BeautifulSoup (Python library to assist with screen scraping). Pushbullet (allow for notifications to Android…

Messing about with the PushBullet API

Stumbled across the PushBullet API and Android App.  Spent 10 mins and managed to send push notification to my phone using curl as follows:- You’ll need to signup and PushBullet to gain access token. curl -k –header “Access-Token: <your access token>” https://api.pushbullet.com/v2/pushes -X POST –header…