Basically this tool lets you write something like this:
GOTO example.com >> EXTRACT {'column1':td[0], 'column2': td[1]} IN table.spad
instead of having to write everything from scratch:
import urllib2
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(urllib2.urlopen('http://example.com').read())
for row in soup('table', {'class': 'spad'})[0].tbody('tr'):
tds = row('td')
print tds[0].string, tds[1].string
Looks like a pretty cool language. I went to the website though and I noticed that well actually this is a service and so it is not open source and the only thing in the repo is the file that connects to the service. And then I looked for prices on the website and they don't appear to be visible, which is something that makes me immediately want to leave the site as a user.