Created
June 26, 2014 20:39
-
-
Save gonewest818/67aab92631d68ca013f7 to your computer and use it in GitHub Desktop.
Adafruit wisdom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# grabs those nifty comments from adafruit.com | |
# for use in your .signature or MOTD or just | |
# to inspire you | |
import requests | |
from bs4 import BeautifulSoup | |
import os | |
r = requests.get("http://www.adafruit.com") | |
soup = BeautifulSoup(r.content) | |
wisdom = soup.find('span', 'quotes-large').text | |
print wisdom | |
os.system("echo '%s' | pbcopy" % wisdom) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment