Skip to content

Instantly share code, notes, and snippets.

View malcolmboyd's full-sized avatar

Malcolm Boyd malcolmboyd

View GitHub Profile
@malcolmboyd
malcolmboyd / Bitcoin Price Scraper
Created November 28, 2014 06:11
A python script to scrape the bitcoin price and notify the user via sms message and desktop notification on linux.
#!/usr/bin/python3
import requests, subprocess, time, smtplib
from email.mime.text import MIMEText
from bs4 import BeautifulSoup
class BitcoinPrice:
price = 0
website = "http://www.bitcoinexchangerate.org/"