@@ -22,7 +22,157 @@ class DictWrapper:
22
22
def __getattr__ (self , key : str ) -> str | bool | int | DictWrapper | None : ...
23
23
def __dir__ (self ) -> Iterable [str ]: ...
24
24
25
- options : DictWrapper = ...
25
+ class Compute (DictWrapper ):
26
+ use_bottleneck : bool
27
+ use_numba : bool
28
+ use_numexpr : bool
29
+
30
+ class DisplayHTML (DictWrapper ):
31
+ border : int
32
+ table_schema : bool
33
+ use_mathjax : bool
34
+
35
+ class DisplayLaTeX (DictWrapper ):
36
+ escape : bool
37
+ longtable : bool
38
+ multicolumn : bool
39
+ multicolumn_format : str
40
+ multirow : bool
41
+ repr : bool
42
+
43
+ class DisplayUnicode (DictWrapper ):
44
+ ambiguous_as_wide : bool
45
+ east_asian_width : bool
46
+
47
+ class Display (DictWrapper ):
48
+ chop_threshold : int | None
49
+ colheader_justify : str
50
+ column_space : int
51
+ date_dayfirst : bool
52
+ date_yearfirst : bool
53
+ encoding : str
54
+ expand_frame_repr : bool
55
+ float_format : str | None
56
+ html : DisplayHTML
57
+ large_repr : str
58
+ latex : DisplayLaTeX
59
+ max_categories : int
60
+ max_columns : int
61
+ max_colwidth : int
62
+ max_dir_items : int
63
+ max_info_columns : int
64
+ max_info_rows : int
65
+ max_rows : int
66
+ max_seq_items : int
67
+ memory_usage : bool
68
+ min_rows : int
69
+ multi_sparse : bool
70
+ notebook_repr_html : bool
71
+ pprint_nest_depth : int
72
+ precision : int
73
+ show_dimensions : str
74
+ unicode : DisplayUnicode
75
+ width : int
76
+
77
+ class IOExcelODS (DictWrapper ):
78
+ reader : str
79
+ writer : str
80
+
81
+ class IOExcelXLS (DictWrapper ):
82
+ writer : str
83
+
84
+ class IOExcelXLSB (DictWrapper ):
85
+ reader : str
86
+
87
+ class IOExcelXLSM (DictWrapper ):
88
+ reader : str
89
+ writer : str
90
+
91
+ class IOExcelXLSX (DictWrapper ):
92
+ reader : str
93
+ writer : str
94
+
95
+ class IOExcel (DictWrapper ):
96
+ ods : IOExcelODS
97
+ xls : DictWrapper
98
+ xlsb : DictWrapper
99
+ xlsm : DictWrapper
100
+ xlsx : DictWrapper
101
+
102
+ class IOHDF (DictWrapper ):
103
+ default_format : Literal ["table" , "fixed" ] | None
104
+ dropna_table : bool
105
+
106
+ class IOParquet (DictWrapper ):
107
+ engine : str
108
+
109
+ class IOSQL (DictWrapper ):
110
+ engine : str
111
+
112
+ class IO (DictWrapper ):
113
+ excel : IOExcel
114
+ hdf : IOHDF
115
+ parquet : IOParquet
116
+ sql : IOSQL
117
+
118
+ class Mode (DictWrapper ):
119
+ chained_assignment : str
120
+ data_manager : str
121
+ sim_interactive : bool
122
+ string_storage : str
123
+ use_inf_as_na : bool
124
+
125
+ class PlottingMatplotlib (DictWrapper ):
126
+ register_converters : str
127
+
128
+ class Plotting (DictWrapper ):
129
+ backend : str
130
+ matplotlib : PlottingMatplotlib
131
+
132
+ class StylerFormat :
133
+ decimal : str
134
+ escape : str | None
135
+ formatter : str | None
136
+ na_rep : str | None
137
+ precision : int
138
+ thousands : str | None
139
+
140
+ class StylerHTML :
141
+ mathjax : bool
142
+
143
+ class StylerLatex :
144
+ environment : str | None
145
+ hrules : bool
146
+ multicol_align : str
147
+ multirow_align : str
148
+
149
+ class StylerRender :
150
+ encoding : str
151
+ max_columns : int | None
152
+ max_elements : int
153
+ max_rows : int | None
154
+ repr : str
155
+
156
+ class StylerSparse :
157
+ columns : bool
158
+ index : bool
159
+
160
+ class Styler (DictWrapper ):
161
+ format : StylerFormat
162
+ html : StylerHTML
163
+ latex : StylerLatex
164
+ render : StylerRender
165
+ sparse : StylerSparse
166
+
167
+ class Options (DictWrapper ):
168
+ compute : Compute
169
+ display : Display
170
+ io : IO
171
+ mode : Mode
172
+ plotting : Plotting
173
+ styler : Styler
174
+
175
+ options : Options
26
176
27
177
class option_context (ContextDecorator ):
28
178
def __init__ (self , / , pat : str , val : Any , * args : Any ) -> None : ...
0 commit comments