At least a couple of options, the first using BeautifulSoup:
import urllib import BeautifulSoup
soup = BeautifulSoup.BeautifulSoup(urllib.urlopen("https://www.google.com")) print soup.title.string And the second one using lxml: import lxml.html t =...
Just returned from another day in Teuge, skydiving. As it turned out I was right about the weather. It was a bit cold, especially in the first jump, but overall it was a very pleasant temperature and no wind. And you know what that means, right? Fast...
In case you didn't read my entry on becoming an "early riser" (i.e. someone that gets up every day at the same (early) hour), I started a 30 day experiment to see what would happen to me both physically and mentally if I did. These are the conclusions....
I recently came across a piece of software called "Fabric". It has been made in python and its purpose is to help simplifying the process of deploying software to remote machines.
The really cool thing I like about it is that it's much faster than,...