Skip to content

Instantly share code, notes, and snippets.

@gonewest818
Created June 26, 2014 20:39
Show Gist options
  • Save gonewest818/67aab92631d68ca013f7 to your computer and use it in GitHub Desktop.
Save gonewest818/67aab92631d68ca013f7 to your computer and use it in GitHub Desktop.
Adafruit wisdom
#!/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