mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
12 lines
165 B
Python
12 lines
165 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
""" Tablib - formats
|
|
"""
|
|
|
|
import _csv as csv
|
|
import _json as json
|
|
import _xls as xls
|
|
import _yaml as yaml
|
|
|
|
FORMATS = (json, xls, yaml, csv)
|