@@ -13,60 +13,6 @@ from typing import (
13
13
overload ,
14
14
)
15
15
16
- @overload
17
- def read_excel (
18
- filepath : str ,
19
- sheet_name : Optional [List [str ]],
20
- header : Optional [Union [int , Sequence [int ]]] = ...,
21
- names : Optional [Sequence [str ]] = ...,
22
- index_col : Optional [Union [int , Sequence [int ]]] = ...,
23
- usecols : Optional [Union [int , str , Sequence [Union [int , str , Callable ]]]] = ...,
24
- squeeze : bool = ...,
25
- dtype : Union [str , Dict [str , Any ], Dtype ] = ...,
26
- engine : Optional [str ] = ...,
27
- converters : Optional [Dict [Union [int , str ], Callable ]] = ...,
28
- true_values : Optional [Sequence [Scalar ]] = ...,
29
- false_values : Optional [Sequence [Scalar ]] = ...,
30
- skiprows : Optional [Union [Sequence [int ], int , Callable ]] = ...,
31
- nrows : Optional [int ] = ...,
32
- na_values = ...,
33
- keep_default_na : bool = ...,
34
- verbose : bool = ...,
35
- parse_dates : Union [bool , Sequence , Dict [str , Sequence ]] = ...,
36
- date_parser : Optional [Callable ] = ...,
37
- thousands : Optional [str ] = ...,
38
- comment : Optional [str ] = ...,
39
- skipfooter : int = ...,
40
- convert_float : bool = ...,
41
- mangle_dupe_cols : bool = ...,
42
- ) -> Dict [str , DataFrame ]: ...
43
- @overload
44
- def read_excel (
45
- filepath : str ,
46
- sheet_name : List [int ],
47
- header : Optional [Union [int , Sequence [int ]]] = ...,
48
- names : Optional [Sequence [str ]] = ...,
49
- index_col : Optional [Union [int , Sequence [int ]]] = ...,
50
- usecols : Optional [Union [int , str , Sequence [Union [int , str , Callable ]]]] = ...,
51
- squeeze : bool = ...,
52
- dtype : Union [str , Dict [str , Any ], Dtype ] = ...,
53
- engine : Optional [str ] = ...,
54
- converters : Optional [Dict [Union [int , str ], Callable ]] = ...,
55
- true_values : Optional [Sequence [Scalar ]] = ...,
56
- false_values : Optional [Sequence [Scalar ]] = ...,
57
- skiprows : Optional [Union [Sequence [int ], int , Callable ]] = ...,
58
- nrows : Optional [int ] = ...,
59
- na_values = ...,
60
- keep_default_na : bool = ...,
61
- verbose : bool = ...,
62
- parse_dates : Union [bool , Sequence , Dict [str , Sequence ]] = ...,
63
- date_parser : Optional [Callable ] = ...,
64
- thousands : Optional [str ] = ...,
65
- comment : Optional [str ] = ...,
66
- skipfooter : int = ...,
67
- convert_float : bool = ...,
68
- mangle_dupe_cols : bool = ...,
69
- ) -> Dict [int , DataFrame ]: ...
70
16
@overload
71
17
def read_excel (
72
18
filepath : str ,
0 commit comments