You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.