Skip to content
David Megginson edited this page Aug 25, 2015 · 7 revisions

This section of the wiki is for people who want to write Python applications to work with HXL-tagged data. libhxl works with both Python 2.7+ and Python 3. Working with libhxl can be as simple as this:

import hxl
for row in hxl.data('http://example.org/hxl-data.csv'):
    print("#org is {}\n".format(row.get('org')))
  • Quick start — start using libhxl with a couple of lines of Python code.