|
45 | 45 | import pandas.core.config_init
|
46 | 46 |
|
47 | 47 | from pandas.core.api import (
|
48 |
| - #dtype |
| 48 | + # dtype |
49 | 49 | Int8Dtype, Int16Dtype, Int32Dtype, Int64Dtype, UInt8Dtype,
|
50 | 50 | UInt16Dtype, UInt32Dtype, UInt64Dtype, CategoricalDtype,
|
51 | 51 | PeriodDtype, IntervalDtype, DatetimeTZDtype,
|
52 | 52 |
|
53 |
| - #missing |
| 53 | + # missing |
54 | 54 | isna, isnull, notna, notnull,
|
55 | 55 |
|
56 |
| - #indexes |
| 56 | + # indexes |
57 | 57 | Index, CategoricalIndex, Int64Index, UInt64Index, RangeIndex,
|
58 | 58 | Float64Index, MultiIndex, IntervalIndex, TimedeltaIndex,
|
59 | 59 | DatetimeIndex, PeriodIndex, IndexSlice,
|
60 | 60 |
|
61 |
| - #tseries |
| 61 | + # tseries |
62 | 62 | NaT, Period, period_range, Timedelta, timedelta_range,
|
63 | 63 | Timestamp, date_range, bdate_range, Interval, interval_range,
|
64 | 64 | DateOffset,
|
65 | 65 |
|
66 |
| - #conversion |
| 66 | + # conversion |
67 | 67 | to_numeric, to_datetime, to_timedelta,
|
68 | 68 |
|
69 |
| - #misc |
| 69 | + # misc |
70 | 70 | np, TimeGrouper, Grouper, factorize, unique, value_counts,
|
71 |
| - array, Categorical, set_eng_float_format, Series, DataFrame, |
| 71 | + array, Categorical, set_eng_float_format, Series, DataFrame, |
72 | 72 | Panel)
|
73 | 73 |
|
74 | 74 | from pandas.core.sparse.api import (
|
|
87 | 87 | from pandas.util._print_versions import show_versions
|
88 | 88 |
|
89 | 89 | from pandas.io.api import (
|
90 |
| - #excel |
| 90 | + # excel |
91 | 91 | ExcelFile, ExcelWriter, read_excel,
|
92 | 92 |
|
93 |
| - #packers |
| 93 | + # packers |
94 | 94 | read_msgpack, to_msgpack,
|
95 | 95 |
|
96 |
| - #parsers |
| 96 | + # parsers |
97 | 97 | read_csv, read_fwf, read_table,
|
98 | 98 |
|
99 |
| - #pickle |
| 99 | + # pickle |
100 | 100 | read_pickle, to_pickle,
|
101 | 101 |
|
102 |
| - #pytables |
| 102 | + # pytables |
103 | 103 | HDFStore, read_hdf,
|
104 | 104 |
|
105 |
| - #sql |
| 105 | + # sql |
106 | 106 | read_sql, read_sql_query,
|
107 | 107 | read_sql_table,
|
108 | 108 |
|
109 |
| - #misc |
| 109 | + # misc |
110 | 110 | read_clipboard, read_parquet, read_feather, read_gbq,
|
111 | 111 | read_html, read_json, read_stata, read_sas)
|
112 | 112 |
|
|
0 commit comments