1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
from __future__ import absolute_import, print_function, division
from petl.io.base import fromcolumns
from petl.io.sources import FileSource, GzipSource, BZ2Source, ZipSource, \
StdinSource, StdoutSource, URLSource, StringSource, PopenSource, \
MemorySource
from petl.io.csv import fromcsv, fromtsv, tocsv, appendcsv, totsv, appendtsv, \
teecsv, teetsv
from petl.io.pickle import frompickle, topickle, appendpickle, teepickle
from petl.io.text import fromtext, totext, appendtext, teetext
from petl.io.xml import fromxml, toxml
from petl.io.html import tohtml, teehtml
from petl.io.json import fromjson, tojson, tojsonarrays, fromdicts
from petl.io.db import fromdb, todb, appenddb
from petl.io.xls import fromxls, toxls
from petl.io.xlsx import fromxlsx, toxlsx, appendxlsx
from petl.io.numpy import fromarray, toarray, torecarray
from petl.io.pandas import fromdataframe, todataframe
from petl.io.pytables import fromhdf5, fromhdf5sorted, tohdf5, appendhdf5
from petl.io.whoosh import fromtextindex, searchtextindex, \
searchtextindexpage, totextindex, appendtextindex
from petl.io.bcolz import frombcolz, tobcolz, appendbcolz
from petl.io.avro import fromavro, toavro, appendavro
from petl.io.sources import register_codec, register_reader, register_writer
from petl.io.remotes import RemoteSource
from petl.io.remotes import SMBSource
from petl.io.gsheet import fromgsheet, togsheet, appendgsheet
|