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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| """
| Data IO api
| """
|
| from pandas.io.clipboards import read_clipboard
| from pandas.io.excel import (
| ExcelFile,
| ExcelWriter,
| read_excel,
| )
| from pandas.io.feather_format import read_feather
| from pandas.io.gbq import read_gbq
| from pandas.io.html import read_html
| from pandas.io.json import read_json
| from pandas.io.orc import read_orc
| from pandas.io.parquet import read_parquet
| from pandas.io.parsers import (
| read_csv,
| read_fwf,
| read_table,
| )
| from pandas.io.pickle import (
| read_pickle,
| to_pickle,
| )
| from pandas.io.pytables import (
| HDFStore,
| read_hdf,
| )
| from pandas.io.sas import read_sas
| from pandas.io.spss import read_spss
| from pandas.io.sql import (
| read_sql,
| read_sql_query,
| read_sql_table,
| )
| from pandas.io.stata import read_stata
| from pandas.io.xml import read_xml
|
| __all__ = [
| "ExcelFile",
| "ExcelWriter",
| "HDFStore",
| "read_clipboard",
| "read_csv",
| "read_excel",
| "read_feather",
| "read_fwf",
| "read_gbq",
| "read_hdf",
| "read_html",
| "read_json",
| "read_orc",
| "read_parquet",
| "read_pickle",
| "read_sas",
| "read_spss",
| "read_sql",
| "read_sql_query",
| "read_sql_table",
| "read_stata",
| "read_table",
| "read_xml",
| "to_pickle",
| ]
|
|