Intro to HTQL with Python (1)

HTQL – Hyper-Text Query Language – is a language for querying and extracting content from HTML pages. If SQL is a language to get data from tables within a database, then HTQL is a language to get data from webpages on the internet. It is useful when you need to pull data from the web and there is no web service available to use. An example might be to pull population statistics from Wikipedia.

Note that the example below uses Python 2.7.3 and HTQL for Python 2.7. I’ve done this because I’m ultimately deploying code to a Microsoft Azure website, which only supported Python 2.7.3 or 3.4.0 at the time of writing, and unfortunately there isn’t a version of HTQL for Python 3.4.0! You may want consider developing with Python 3.3.5 and HTQL for Python 3.3.

 

Download and install Python

  1. Download Python (I downloaded the 32-bit MSI installer):
    https://www.python.org/downloads, or directly:
    https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi
  2. Run the installer, letting it add Python to your path if prompted (if you are not prompted for this then you probably have an existing Python install and may want consider whether or not to update your path manually).

 

Check Python

If you want to double check that Python is working then you can create and run a simple program to output the Python version as follows:

  1. Setup a folder for development
  2. Create a new file in that folder called test.py
  3. Right click that file and you should be able to select “Edit with IDLE” (IDLE is a basic IDE for Python development). You should see a blank window like this:
    Empty python file
  4. Enter the following code:
    import sys
    sys.stdout.write("hello from Python %s\n" % (sys.version,))
  5. And then hit F5 to run the program (or select Run > Run Module from the menu)
  6. A second window should open – the Python Shell – and your program should run:
    Output of Python program

 

Download and install HTQL

Next we’ll download and install HTQL for Python:

  1. Download the HTQL Python library:
    http://htql.net/, or directly:
    http://htql.net/Python27/htql.zip
  2. You’ll probably want to grab the HTQL manual and the HTQL Python  manual whilst you’re there. The first of these describes HTQL itself, the second describes using HTQL within a Python program.
  3. There is only one file in the zip – htql.pyd – extract this file and place a copy in <install location>\Python27\Libs (where <install location> is the location in which you installed Python in the steps above).

 

Run a simple HTQL script

You can check that HTQL is working using the basic example from the HTQL python manual, as described below. Note that this example doesn’t go out to a webpage; it just parses a chunk of HTML that is setup in a local variable.

  1. Create a new python file – e.g. htql-1.py
  2. Edit the file in IDLE and enter the following code:
    import htql;
    page="<a href=a.html>1</a><a href=b.html>2</a><a href=c.html>3</a>";
    query="<a>:href,tx";
    for url, text in htql.HTQL(page, query):
         print(url, text);
  3. The code above does the following:
    • pulls in the HTQL library – import htql;
    • Sets up a dummy HTML page with three links / anchors.
    • Specifies a HTQL query which says “for all of the anchor <a> tags in the HTML, give me the url / href and the text within the anchor” (tx = the text between the start and end tags).
    • The code then loops through the results of running that query against the dummy page and prints out each url and text found.
  4. If you run the code (hit F5) you should see the following output:
    Output of Python HTQL program
  5. Success!