@@ -960,7 +960,7 @@ def read_html(
960
960
This value is converted to a regular expression so that there is
961
961
consistent behavior between Beautiful Soup and lxml.
962
962
963
- flavor : str or None, container of strings
963
+ flavor : str or None
964
964
The parsing engine to use. 'bs4' and 'html5lib' are synonymous with
965
965
each other, they are both there for backwards compatibility. The
966
966
default of ``None`` tries to use ``lxml`` to parse and if that fails it
@@ -974,7 +974,7 @@ def read_html(
974
974
The column (or list of columns) to use to create the index.
975
975
976
976
skiprows : int or list-like or slice or None, optional
977
- 0-based. Number of rows to skip after parsing the column integer. If a
977
+ Number of rows to skip after parsing the column integer. 0-based . If a
978
978
sequence of integers or a slice is given, will skip the rows indexed by
979
979
that sequence. Note that a single element sequence means 'skip the nth
980
980
row' whereas an integer means 'skip n rows'.
@@ -1024,18 +1024,19 @@ def read_html(
1024
1024
transformed content.
1025
1025
1026
1026
na_values : iterable, default None
1027
- Custom NA values
1027
+ Custom NA values.
1028
1028
1029
1029
keep_default_na : bool, default True
1030
1030
If na_values are specified and keep_default_na is False the default NaN
1031
- values are overridden, otherwise they're appended to
1031
+ values are overridden, otherwise they're appended to.
1032
1032
1033
1033
displayed_only : bool, default True
1034
- Whether elements with "display: none" should be parsed
1034
+ Whether elements with "display: none" should be parsed.
1035
1035
1036
1036
Returns
1037
1037
-------
1038
- dfs : list of DataFrames
1038
+ dfs
1039
+ A list of DataFrames.
1039
1040
1040
1041
See Also
1041
1042
--------
0 commit comments