Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pandas/io/api.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2Data IO api
3"""
5from pandas.io.clipboards import read_clipboard
6from pandas.io.excel import (
7 ExcelFile,
8 ExcelWriter,
9 read_excel,
10)
11from pandas.io.feather_format import read_feather
12from pandas.io.gbq import read_gbq
13from pandas.io.html import read_html
14from pandas.io.json import read_json
15from pandas.io.orc import read_orc
16from pandas.io.parquet import read_parquet
17from pandas.io.parsers import (
18 read_csv,
19 read_fwf,
20 read_table,
21)
22from pandas.io.pickle import (
23 read_pickle,
24 to_pickle,
25)
26from pandas.io.pytables import (
27 HDFStore,
28 read_hdf,
29)
30from pandas.io.sas import read_sas
31from pandas.io.spss import read_spss
32from pandas.io.sql import (
33 read_sql,
34 read_sql_query,
35 read_sql_table,
36)
37from pandas.io.stata import read_stata
38from pandas.io.xml import read_xml
40__all__ = [
41 "ExcelFile",
42 "ExcelWriter",
43 "HDFStore",
44 "read_clipboard",
45 "read_csv",
46 "read_excel",
47 "read_feather",
48 "read_fwf",
49 "read_gbq",
50 "read_hdf",
51 "read_html",
52 "read_json",
53 "read_orc",
54 "read_parquet",
55 "read_pickle",
56 "read_sas",
57 "read_spss",
58 "read_sql",
59 "read_sql_query",
60 "read_sql_table",
61 "read_stata",
62 "read_table",
63 "read_xml",
64 "to_pickle",
65]