Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2Data IO api 

3""" 

4 

5# flake8: noqa 

6 

7from pandas.io.clipboards import read_clipboard 

8from pandas.io.excel import ExcelFile, ExcelWriter, read_excel 

9from pandas.io.feather_format import read_feather 

10from pandas.io.gbq import read_gbq 

11from pandas.io.html import read_html 

12from pandas.io.json import read_json 

13from pandas.io.orc import read_orc 

14from pandas.io.parquet import read_parquet 

15from pandas.io.parsers import read_csv, read_fwf, read_table 

16from pandas.io.pickle import read_pickle, to_pickle 

17from pandas.io.pytables import HDFStore, read_hdf 

18from pandas.io.sas import read_sas 

19from pandas.io.spss import read_spss 

20from pandas.io.sql import read_sql, read_sql_query, read_sql_table 

21from pandas.io.stata import read_stata