Add a CSV parser

This commit is contained in:
Laurent Bachelier 2013-02-05 14:20:51 +01:00
commit 91f59a9cef
2 changed files with 85 additions and 0 deletions

View file

@ -59,6 +59,14 @@ def load_json():
from .jsonparser import JsonParser
return JsonParser
def load_csv():
# This parser doesn't read HTML, don't include it in the
# preference_order default value below.
from .csvparser import CsvParser
return CsvParser
def load_raw():
# This parser doesn't read HTML, don't include it in the
# preference_order default value below.